有没有办法让天空/湖的背景在你滚动的时候保持静止?
Site
发布于 2010-08-28 02:36:00
在该站点中,更改此行
<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>这样就可以完成工作了。
发布于 2010-08-28 02:30:22
在CSS中:
background-attachment: fixedhttp://www.w3schools.com/css/tryit.asp?filename=trycss_background-attachment
发布于 2010-08-28 02:34:16
或者速记:
body {background: url("/images/myimage.png") no-repeat fixed top left;}https://stackoverflow.com/questions/3587083
复制相似问题