登录页是后来改版加上的,没有用自适应的UI框架。所以用手机浏览器打开是这样,根本没办法登录:
然后修改调整了一下:
用媒体查询修改样式
@media screen and (min-width: 320px)and (max-width: 750px){
h1{
color: #fff;
}
.bgimg {
min-width: 320px;
min-height: 0px;
}
.center {
width: 100%;
height: 100vh;
position: absolute;
left: 0%;
top: 0%;
}
.center_img {
display: none;
}
.center .loginFrom {
width: 90%;
height: 70%;
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%,-50%);
border-radius: 15px;
background: rgba(255, 255, 255, 0.5)
}
}
- 尽量使用百分比的方式
- 想要父元素透明度不影响子元素透明度,不用opacity,使用rgba