当你滚动时,是否有天空/湖泊背景保持静止?
答案 0 :(得分:12)
在CSS中:
background-attachment: fixed
http://www.w3schools.com/css/tryit.asp?filename=trycss_background-attachment
答案 1 :(得分:3)
或者简写:
body {background: url("/images/myimage.png") no-repeat fixed top left;}
答案 2 :(得分:0)
body{
background-image:url('lake.jpg'); /* or whatever */
background-attachment:fixed;
}
答案 3 :(得分:0)
尝试
background-attachment:fixed;
答案 4 :(得分:0)
在该网站中,更改此行
<div><img src="images/bottom_bg.jpg" width="100%" alt="" /></div>
到
<div id="foobar"><img src="images/bottom_bg.jpg" width="100%" alt="" /></div>
并添加以下CSS:
<style>
#foobar{ position: fixed; bottom: 0px; width: 100%; }
</style>
那应该做的工作。