gpt4 book ai didi

html - 如何为移动设备缩放此视差中的背景图像?

转载 作者:行者123 更新时间:2023-11-28 03:15:56 25 4
gpt4 key购买 nike

我正在尝试设置一个流畅的模板,我也可以将其用于响应式设计视口(viewport)。但是现在,当我尝试调整浏览器窗口大小时,它不会缩放,而在我的 iPhone 上,我只能看到标题图形的左上部分。在移动设备上,背景图像非常大且模糊,但在我的 test website 上看起来还不错.任何帮助将不胜感激

CSS

/* ============================================================
SECTIONS
============================================================ */
section.module:last-child {
margin-bottom: 0;

}
section.module h2 {
margin-bottom: 40px;
font-family: "Roboto Slab", serif;
font-size: 30px;
}
section.module p {
margin-bottom: 40px;
font-size: 16px;
font-weight: 300;
}
section.module p:last-child {
margin-bottom: 0;
}
section.module.content {
padding: 40px 0;

}

.contentbg {
background-color: rgba(230,230,230,.6);

}
section.module.parallax {
height: 73vh;
background-position: center;
background-repeat: no-repeat;
background-attachment: fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
max-width:100%;

}
section.module.parallax h1 {
color: rgba(255, 255, 255, 0.8);
font-size: 48px;
line-height: 600px;
font-weight: 700;
text-align: center;
text-transform: uppercase;
text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
section.module.parallax-1 {
background-image:url(../../images/5.jpg);
}
section.module.parallax-2 {
background-image:url(../../images/6.jpg);
}
section.module.parallax-3 {
background-image:url(../../images/4.jpg);
}

@media all and (min-width: 600px) {

section.module h2 {
font-size: 42px;
}
section.module p {
font-size: 20px;
}
section.module.parallax h1 {
font-size: 96px;
}
}
@media all and (min-width: 960px) {
section.module.parallax h1 {
font-size: 160px;
}
}

最佳答案

你需要添加 background-size: 100% auto ,这样你就可以根据屏幕分辨率做出响应

section.module.parallax {
background-position: center;
background-repeat: no-repeat;
background-attachment: fixed;
-webkit-background-size: 100% auto;
-moz-background-size: 100% auto;
-o-background-size: 100% auto;
background-size: 100% auto;
max-width:100%;

}

关于html - 如何为移动设备缩放此视差中的背景图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27832136/

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