小程序遮罩層禁止頁面滾動(遮罩層內部可以滾動)


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;
}


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM