当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


HTML Style zIndex用法及代码示例


Style zIndex属性用于设置或返回定位元素的堆栈顺序。具有较低堆叠顺序的元素将位于具有较高堆叠顺序的另一个元素之后。例如,堆栈顺序为(1)的元素将在堆栈顺序为(0)的元素之前。当用户想要创建重叠元素时,通常使用Style zIndex属性。

用法:

  • 要获得该属性:
    object.style.zIndex;
  • 设置属性:
    object.style.zIndex = "auto|number|initial|inherit"

属性值:


  • auto:它用于让浏览器确定元素的堆栈顺序。
  • number:它使用一个整数,该整数定义元素的堆栈顺序。
  • initial:用于设置默认值。
  • inherit:它用于从其父级继承属性。

以下示例程序旨在说明Style zIndex属性:
例:更改<img>元素的堆栈顺序。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>Style zIndex Property</title> 
    <style> 
        #MyImage { 
            position:absolute; 
            left:200px; 
            top:80px; 
            z-index:-1 
        } 
          
        h1 { 
            color:green; 
        } 
          
        h2 { 
            font-family:Impact; 
        } 
          
        body { 
            text-align:center; 
        } 
    </style> 
</head> 
  
<body> 
<center> 
    <h1>GeeksforGeeks</h1> 
    <h2>Style zIndex Property</h2> 
  
    <img id="MyImage" src= 
"https://media.geeksforgeeks.org/wp-content/uploads/gfg_200X200-1.png" 
         width="200" 
         height="200"> 
  
    <button type="button" ondblclick="stack()"> 
      Bring Logo In The Front 
    </button> 
  
    <p>This is the logo of Geeksforgeeks.It has z-index as 0.</p> 
    <br> 
    <p>To bring the logo in the front, 
    double-click the "Bring Logo In The Front" button.</p> 
  
    <script> 
        function stack() { 
            document.getElementById("MyImage").style.zIndex = "1"; 
        } 
    </script> 
</center> 
</body> 
  
</html>

输出:

  • 在单击按钮之前:
  • 双击按钮后:

支持的浏览器:HTML | DOM风格的zIndex属性在下面列出:

  • 谷歌浏览器
  • IE浏览器
  • Firefox
  • Opera
  • 苹果Safari


相关用法


注:本文由纯净天空筛选整理自Shubrodeep Banerjee大神的英文原创作品 HTML | DOM Style zIndex Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。