我想要一个像这样的固定背景图像。
这可以在不使用任何 jQuery 插件的情况下仅使用 css 制作吗?
CSS3方式:(ie9+等)
html {
background: url(images/bg.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
jQuery插件跨浏览器方式: http ://bavotasan.com/2011/full-sizebackground-image-jquery-plugin/