JavaScript HTML DOM Style backgroundAttachment 属性
-
backgroundAttachment 属性
backgroundAttachment属性设置或返回背景图像是应与内容一起滚动还是固定。设置要修复的背景图像(不会滚动):
尝试一下document.body.style.backgroundAttachment = "fixed";
-
浏览器支持
项 IE/Edge Chrome FireFox Safari Opera 属性 backgroundAttachment 4.0+1.0+1.0+1.0+3.5+ -
语法
返回backgroundAttachment属性:object.style.backgroundAttachment设置backgroundAttachment属性:object.style.backgroundAttachment = "scroll|fixed|local|initial|inherit" -
-
技术细节
项目 描述 默认值: scroll 返回值: 一个字符串,表示背景图像如何附加到文档中的对象 CSS版本 CSS1 -
更多例子
在DIV元素上选择scroll和local:
尝试一下document.getElementById("myDIV").style.backgroundAttachment = "local";
在scroll和fixed之间切换:
尝试一下var x = document.body.style.backgroundAttachment; document.body.style.backgroundAttachment = (x == "scroll")? "fixed":"scroll";
返回background-attachment属性的值
尝试一下alert(document.body.style.backgroundAttachment);
-