最新的Web開發教程
 

Style backgroundAttachment Property

<Style對象

設置背景圖像被固定(will not scroll)

document.body.style.backgroundAttachment = "fixed";
試一試»

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

更多示例

滾動和當地的一個DIV元素之間進行選擇:

document.getElementById("myDIV").style.backgroundAttachment = "local";
試一試»

渦旋盤和固定之間切換:

var x = document.body.style.backgroundAttachment;
document.body.style.backgroundAttachment=(x=="scroll")? "fixed":"scroll";
試一試»

返回背景附件屬性的值:

alert(document.body.style.backgroundAttachment);
試一試»

相關頁面

CSS教程: CSS背景

CSS參考: background-attachment property

HTML DOM參考: background property


<Style對象