Style zIndex 屬性
Style 對象定義和用法
zIndex 屬性設(shè)置或返回定位元素的堆疊順序。
擁有更高堆疊順序(1)的元素總是會處于較低堆疊順序(0)的元素的前面。
提示:一個定位元素是元素的 position 屬性被設(shè)置為:relative(相對)、absolute(絕對)或 fixed(固定)。
語法
設(shè)置 zIndex 屬性:
Object.style.zIndex="auto|number|inherit"
返回 zIndex 屬性:
Object.style.zIndex
值 | 描述 |
---|---|
auto | 默認。瀏覽器決定元素的堆疊順序(基于元素在文檔中的順序)。 |
number | 一個定義元素堆疊順序的整數(shù)??墒褂秘撝?。 |
inherit | zIndex 屬性的值從父元素繼承。 |
瀏覽器支持
所有主要瀏覽器都支持 zIndex 屬性。
提示和注釋
提示:如果您想創(chuàng)建重疊的元素,該屬性非常有用。
實例
實例
更改 <img> 元素的堆疊順序:
<html>
<head>
<style type="text/css">
#img1
{
position:absolute;
left:0px;
top:0px;
z-index:-1
}
</style>
<script>
function changeStackOrder()
{
document.getElementById("img1").style.zIndex="1";
}
</script>
</head>
<body>
<h1>This is a Heading</h1>
<img id="img1" src="bulbon.gif" width="100" height="180">
<input type="button" onclick="changeStackOrder()" value="Change stack order">
<p>Default z-index is 0. Z-index -1 has lower priority.</p>
</body>
</html>
<head>
<style type="text/css">
#img1
{
position:absolute;
left:0px;
top:0px;
z-index:-1
}
</style>
<script>
function changeStackOrder()
{
document.getElementById("img1").style.zIndex="1";
}
</script>
</head>
<body>
<h1>This is a Heading</h1>
<img id="img1" src="bulbon.gif" width="100" height="180">
<input type="button" onclick="changeStackOrder()" value="Change stack order">
<p>Default z-index is 0. Z-index -1 has lower priority.</p>
</body>
</html>
嘗試一下 ?
Style 對象
更多建議: