當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。