Style backgroundPosition 屬性
Style 對(duì)象定義和用法
backgroundPosition 屬性設(shè)置或返回元素的背景圖像的位置。
語(yǔ)法
設(shè)置 backgroundPosition 屬性:
Object.style.backgroundPosition="position"
返回 backgroundPosition 屬性:
Object.style.backgroundPosition
提示:backgroundPosition 屬性的默認(rèn)值是:0% 0%。
值 | 描述 |
---|---|
top left top center top right center left center center center right bottom left bottom center bottom right |
如果僅指定一個(gè)關(guān)鍵字,其他值將是 "center"。 |
x% y% | x 值表示水平位置,y 值表示垂直位置。左上角是 0% 0%。右下角是 100% 100%。如果僅指定一個(gè)值,其他值將是 50%。 |
xpos ypos | x 值表示水平位置,y 值表示垂直位置。左上角是 0 0。單位可以是像素(0px 0px)或任何其他的 CSS 單位。如果僅指定一個(gè)值,其他值將是 50%。您可以混合使用 % 和單位。 |
inherit | 背景位置屬性的設(shè)置從父元素繼承。 |
瀏覽器支持
所有主要瀏覽器都支持 backgroundPosition 屬性。
注意:IE7 及更早的版本不支持 "inherit" 值。IE8 只有規(guī)定了 !DOCTYPE 才支持 "inherit"。IE9 支持 "inherit"。
實(shí)例
實(shí)例
更改背景圖像的位置:
<html>
<head>
<style>
div
{
background-image: url('img_tree.png');
background-repeat: no-repeat;
width: 400px;
height: 400px;
border: 1px solid #000000;
}
</style>
<script>
function displayResult()
{
document.getElementById("div1").style.backgroundPosition="center bottom";
}
</script>
</head>
<body>
<button type="button" onclick="displayResult()">Position background image</button>
<br>
<div id="div1">
</div>
</body>
</html>
<head>
<style>
div
{
background-image: url('img_tree.png');
background-repeat: no-repeat;
width: 400px;
height: 400px;
border: 1px solid #000000;
}
</style>
<script>
function displayResult()
{
document.getElementById("div1").style.backgroundPosition="center bottom";
}
</script>
</head>
<body>
<button type="button" onclick="displayResult()">Position background image</button>
<br>
<div id="div1">
</div>
</body>
</html>
嘗試一下 ?
Style 對(duì)象
更多建議: