在http://twitter.com/中,滚动时,背景图像保持不变,但只有中心的主要内容滚动。如何实现这一功能?感谢。
答案 0 :(得分:1)
使用背景图片并设置background-attachment:fixed;
在这里查看css背景属性:http://www.w3schools.com/css/css_background.asp
答案 1 :(得分:1)
使用CSS属性background-attachment: fixed;
答案 2 :(得分:1)
如果使用“Frontpage”,则在插入背景图像时,也请单击“Watermark”。这在HTML中编码以使背景固定。
或者......在您的背景图片HTML之后插入:
background="fixed"
或
bg properites="fixed"
或
<body background="xxx.jpg" behavior="fixed">
您也可以使用CSS:
<style type="text/css">
body {
background-color:#ffffff;
background-image:url(URL_OF_YOUR_IMAGE);
background-attachment:fixed;
}
</style>
Refrence:link
答案 3 :(得分:0)
使用CSS将您的BODY标记的背景定位在HTML中。
body
{
background-image:url('still_image.png');
background-repeat:no-repeat;
background-position:right top;
}