背景图像滚动

时间:2014-09-14 15:49:08

标签: html css html5 css3

我有我背景的代码:

    body{

       background:url(pics/bg.jpg)no-repeat center center;background-size:cover;}

                   }

问题在于,当我向下滚动页面时,图像会滚动,我不想要它:请帮助

3 个答案:

答案 0 :(得分:1)

你需要添加background-attachment:fixed;并删除一个}像这样:

body {
   background:url(pics/bg.jpg)no-repeat center center;
   background-size:cover;
   background-attachment: fixed;
  }

答案 1 :(得分:0)

您想要background-attachment: fixed

答案 2 :(得分:0)

问题是你没有使用background-attachment:fixed。 有两种方法可以做到:

 body{background:url(pics/bg.png)no-repeat center center fixed;}

 body{background:url(pics/bg.png)no-repeat center center;
background-attachment:fixed;}