gpt4 book ai didi

html - 背景 : fixed no repeat not working on mobile

转载 作者:IT王子 更新时间:2023-10-29 07:49:23 25 4
gpt4 key购买 nike

我正在构建一个网页,我希望背景图像可以缩放以适合整个屏幕,保持宽高比并固定(因此,如果您向下滚动,背景图像将保持在同一个位置)。

我已经使用下面的 CSS 在桌面浏览器中实现了这一点,但它在 iPhone 或 iPad 上不起作用。在这些设备上,背景太大(它继续低于折叠),如果您向下滚动足够远,图像将开始重复。有人有办法解决吗?谢谢!

HTML {
background: url(photos/2452.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}

最佳答案

我找到了一个完全不需要 JavaScript 的移动设备固定背景的绝佳解决方案。

body:before {
content: "";
display: block;
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 100%;
z-index: -10;
background: url(photos/2452.jpg) no-repeat center center;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}

请注意 -10 的负 z-index 值。 html 根元素默认 z-index0。此值必须是最小的 z-index 才能将其作为背景。

关于html - 背景 : fixed no repeat not working on mobile,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26372127/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com