HTML DOM backgroundRepeat 属性

HTML DOM Style 对象参考手册

定义和用法

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>

HTML DOM Style 对象参考手册