做小程序項(xiàng)目遇到一個(gè)項(xiàng)目,就是點(diǎn)一個(gè)按鈕出現(xiàn)一個(gè)蒙層,然而下面的頁(yè)面還是可以滾動(dòng),解決如下: view bindtap="hideCoupon" class='coupon_receive_wrapper {{showCouponFlag==true?"active":""}}' catchtouchmov ...
<view bindtap="hideCoupon" class='coupon_receive_wrapper {{showCouponFlag==true?"active":""}}' catchtouchmove="preventD">
樣式如下 :
.coupon_receive_wrapper{
display:none;
position:fixed;
left:0;
top:0;
right:0;
bottom:0;
width:100%;
height:100%;
background:rgba(0,0,0,.5);
z-index:11;
transition: all 1s ease;
}
.coupon_receive_wrapper.active{
display:block;
}
給蒙層那個(gè)元素加個(gè)touchmove事件,這個(gè)事件用來(lái)阻止事件冒泡,preventD中的代碼如下:preventD(){}問題就解決了。
工作日 8:30-12:00 14:30-18:00
周六及部分節(jié)假日提供值班服務(wù)