如何为网站的整个页面设置背景图像?

发布于 2024-10-15 02:41:31 字数 182 浏览 5 评论 0原文

例如

,我希望用户向下滚动,但图像移动。

对我的 CSS 有什么建议吗?

类似于http://www.mobafire.com/,设置了图片,但滚动不移动它。

http://jsfiddle.net/stapiagutierrez/hfhfp/

For example, I'd like the user to scroll down, but the image to not move.

Any suggestions to my CSS?

Similar to http://www.mobafire.com/ where the picture is set, but the scrolling doesn't move it.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

你在看孤独的风景 2024-10-22 02:41:31

您需要将 body 元素的 backgroun-attachment 属性指定为固定。
即:

body{
    background: url('https://i.sstatic.net/6C5Ym.jpg');
    background-repeat:no-repeat;
    background-attachment:fixed;
}

检查 jsFiddle@: http://jsfiddle.net/hfhfp/2/

You need to assign backgroun-attachment property to fixed for body element.
i.e:

body{
    background: url('https://i.sstatic.net/6C5Ym.jpg');
    background-repeat:no-repeat;
    background-attachment:fixed;
}

Check jsFiddle@: http://jsfiddle.net/hfhfp/2/

耳根太软 2024-10-22 02:41:31

将固定添加到背景属性,如下所示:

body{
  background: url('https://i.sstatic.net/6C5Ym.jpg') fixed no-repeat;
}

Add fixed to the background properties like so :

body{
  background: url('https://i.sstatic.net/6C5Ym.jpg') fixed no-repeat;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文