Applet page scrolling ban mask layer (layer inside the mask can be scrolled)

wxml
//使用scroll-view包裹 scrolly-y要写
[scroll-view scroll-y class="mask-box" catchtouchmove='ture']
[view class="box"]
[view]
[scroll-view]
wxss //样式
.mask-box{
width: 300rpx;
height: 300rpx;
position: fixed;
top: 50%;
left: 50%;
margin-top: -250rpx;
margin-left: -130rpx;
background: pink;
}
//可以滚动
.box{
width: 100%;
height: 600rpx;
}

Guess you like

Origin www.cnblogs.com/a-pupil/p/12106548.html
Recommended