时间:2019-04-29 来源:小程序工厂
有可能是组件的外部元素带有 transform:traslate3d 等使fixed 定位失效的属性,导致 fixed 定位不再相对与视口。搜一下 fixed 定位失效,排查一下
微软大牛来了啊,测试是没问题的,
wxml:
wxss:
.intro {
margin: 30px;
text-align: center;
}
.cover {
position: fixed;
top: 0;
bottom: 0;
left: 0;
right: 0;
width: 100%;
height: 100%;
z-index: 99999;
background: rgba(0, 0, 0, 0.5);
}
关键看你的代码