HTML DOM backgroundRepeat 属性
JavaScript基础 2022-06-08 14:24:33小码哥的IT人生shichen
HTML DOM backgroundRepeat 属性
定义和用法
backgroundRepeat 属性设置背景图像是否及如何重复。
语法:
Object.style.backgroundRepeat=repeat_value
参数 | 描述 |
---|---|
repeat | 默认。背景图像将在垂直方向和水平方向重复。 |
repeat-x | 背景图像将在水平方向重复。 |
repeat-y | 背景图像将在垂直方向重复。 |
no-repeat | 背景图像将仅显示一次。 |
实例
本例仅在 y 轴重复背景图像:
<html>
<head>
<style type="text/css">
body
{
background-color:#FFCC80;
background-image:url(bgdesert.jpg);
}
</style>
<script type="text/javascript">
function changeRepeat()
{
document.body.style.backgroundRepeat="repeat-y";
}
</script>
</head>
<body>
<input type="button" onclick="changeRepeat()"
value="Repeat background-image only on the y-axis" />
</body>
</html>
TIY
完整实例【改变 background-image 的 repeat 属性】:
<html>
<head>
<style type="text/css">
body
{
background-color:#FFCC80;
background-image:url(/i/eg_bg_desert.jpg);
}
</style>
<script type="text/javascript">
function changeRepeat()
{
document.body.style.backgroundRepeat="repeat-y";
}
</script>
</head>
<body>
<input type="button" onclick="changeRepeat()" value="Repeat background-image only on the y-axis" />
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html