background

英 [ˈbækgraʊnd]   美 [ˈbækˌɡraʊnd]  

n.(画等的)背景;底色;背景资料;配乐

复数: backgrounds

repeat

英 [rɪˈpi:t]   美 [rɪˈpit]  

vt.重复;复述,背诵

vi.重做;重复投票

n.重复;(节目)重演;重复的事物

第三人称单数: repeats 复数: repeats 现在分词: repeating 过去式: repeated 过去分词: repeated

javascript backgroundRepeat属性 语法

作用:设置背景图像是否及如何重复。

语法:Object.style.backgroundRepeat=repeat_value

参数:repeat    默认。背景图像将在垂直方向和水平方向重复。    repeat-x    背景图像将在水平方向重复。    repeat-y    背景图像将在垂直方向重复。    no-repeat    背景图像将仅显示一次。    

javascript backgroundRepeat属性 示例

<html>
<head>
<style type="text/css">
body
{
background-color:#FFCC80;
background-image:url(http://img.php.cn/upload/article/000/005/656/5af270fd37755429.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>

运行实例 »

点击 "运行实例" 按钮查看在线实例