更多"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對象