Style backgroundRepeat 屬性
Style 對象定義和用法
backgroundRepeat 屬性設(shè)置或返回如何重復(fù)背景圖像。
語法
設(shè)置 backgroundRepeat 屬性:
Object.style.backgroundRepeat="repeat|repeat-x|repeat-y|no-repeat|inherit"
返回 backgroundRepeat 屬性:
Object.style.backgroundRepeat
值 | 描述 |
---|---|
repeat | 默認。垂直和水平方向重復(fù)背景圖像。 |
repeat-x | 水平方向重復(fù)背景圖像。 |
repeat-y | 垂直方向重復(fù)背景圖像。 |
no-repeat | 不重復(fù)背景圖像。 |
inherit | background-repeat 屬性的設(shè)置從父元素繼承。 |
瀏覽器支持
所有主要瀏覽器都支持 backgroundRepeat 屬性。
注意:IE7 及更早的版本不支持 "inherit" 值。IE8 只有規(guī)定了 !DOCTYPE 才支持 "inherit"。IE9 支持 "inherit"。
實例
實例
設(shè)置背景圖像為垂直方向重復(fù):
<html>
<head>
<style type="text/css">
body
{
background:#f3f3f3 url('img_tree.png');
}
</style>
<script>
function displayResult()
{
document.body.style.backgroundRepeat="repeat-y";
}
</script>
</head>
<body>
<button type="button" onclick="displayResult()">Repeat vertically</button>
<br>
<h1>Hello W3Cschool!</h1>
<p>這是一個段落。</p>
</body>
</html>
<head>
<style type="text/css">
body
{
background:#f3f3f3 url('img_tree.png');
}
</style>
<script>
function displayResult()
{
document.body.style.backgroundRepeat="repeat-y";
}
</script>
</head>
<body>
<button type="button" onclick="displayResult()">Repeat vertically</button>
<br>
<h1>Hello W3Cschool!</h1>
<p>這是一個段落。</p>
</body>
</html>
嘗試一下 ?
Style 對象
更多建議: