更多"Try it Yourself"下面的例子。
定义和用法
所述backgroundAttachment属性设置或返回是否背景图像应当与内容滚动,或固定。
浏览器支持
在表中的数字规定,完全支持该财产浏览器版本。
属性 | |||||
---|---|---|---|---|---|
backgroundAttachment | 1.0 | 4 | 1.0 | 1.0 | 3.5 |
句法
返回backgroundAttachment属性:
object .style.backgroundAttachment
设置backgroundAttachment属性:
object .style.backgroundAttachment="scroll|fixed|local|initial|inherit"
属性值
值 | 描述 |
---|---|
scroll | 与元素沿背景滚动。 这是默认 |
fixed | 背景是固定的对于视 |
local | 与元素的内容以及背景滚动 |
initial | 将此属性设置为默认值。 阅读关于初始 |
inherit | 继承其父元素此属性。 阅读关于继承 |
技术细节
默认值: | 滚动 |
---|---|
返回值: | 一个字符串,表示背景图像是如何附接至对象的文档内 |
CSS版本 | CSS1 |
更多示例
例
涡旋盘和固定之间切换:
var x = document.body.style.backgroundAttachment;
document.body.style.backgroundAttachment=(x=="scroll")? "fixed":"scroll";
试一试» 相关页面
CSS教程: CSS背景
CSS参考: background-attachment property
HTML DOM参考: background property
<Style对象