JavaScript HTML DOM Style backgroundRepeat 属性
-
backgroundRepeat 属性
backgroundRepeat属性设置或返回如何重复(平铺)背景图像。将背景图像设置为不重复:
尝试一下document.body.style.backgroundRepeat = "repeat-y";
-
浏览器支持
项 IE/Edge Chrome FireFox Safari Opera 属性 backgroundRepeat 4.0+1.0+1.0+1.0+3.5+ -
语法
返回backgroundRepeat属性:object.style.backgroundRepeat设置backgroundRepeat属性:object.style.backgroundRepeat = "repeat|repeat-x|repeat-y|no-repeat|initial|inherit" -
-
技术细节
项目 描述 默认值: repeat 返回值: 一个字符串,表示如何重复背景图像 CSS版本 CSS1 -
更多例子
更改指定DIV元素的backgroundRepeat属性:
尝试一下document.getElementById("myDIV").style.backgroundRepeat = "repeat-x";
设置背景图像以水平或垂直重复:
尝试一下function repeatVer() { document.body.style.backgroundRepeat = "repeat-y"; } function repeatHor() { document.body.style.backgroundRepeat = "repeat-x"; }
返回文档的背景重复值:
尝试一下alert(document.body.style.backgroundRepeat);
-