例
如何指定一个固定的背景图像:
body
{
background-image: url('w3css.gif');
background-repeat: no-repeat;
background-attachment: fixed;
}
试一试» 更多"Try it Yourself"下面的例子。
定义和用法
背景附着属性设置背景图像是否被固定或与页面的其余部分滚动。
默认值: | scroll |
---|---|
遗传: | no |
动画: | no. Read about animatable |
版: | CSS1 |
JavaScript语法: | object .style.backgroundAttachment="fixed" Try it |
浏览器支持
在表中的数字规定,完全支持该属性的第一个浏览器版本。
属性 | |||||
---|---|---|---|---|---|
background-attachment | 1.0 | 4 | 1.0 | 1.0 | 3.5 |
Note: Internet Explorer 8和更早版本不一个元素上支持多个背景图像。
CSS语法
background-attachment: scroll|fixed|local|initial|inherit;
属性值
值 | 描述 |
---|---|
scroll | 与元素以及背景滚动。 这是默认 |
fixed | 背景是固定的对于视 |
local | 与元素的内容一起的背景滚动 |
initial | 将此属性设置为默认值。 阅读关于初始 |
inherit | 继承其父元素此属性。 阅读关于继承 |
更多示例
例
如何创建一个简单的视差滚动效果(create an illusion of 3D depth) :
.fixed-bg {
/* The background image */
background-image: url("img_tree.gif");
/* Set a specified height, or the minimum height for the background image */
min-height: 500px;
/* Set background image to fixed
(don't scroll along with the page) */
background-attachment: fixed;
/* Center the background
image */
background-position: center;
/* Set the background image to no repeat */
background-repeat: no-repeat;
/* Scale the background
image to be as large as possible */
background-size:
cover;
}
试一试» 相关页面
CSS教程: CSS背景
HTML DOM参考: backgroundAttachment财产