如何在scroll-view上添加遮罩 且不阻止scroll-view的滑动事件?
需求是这样的 期望在scroll-view上添加一个不跟随scroll-view滑动的渐变遮罩,
在添加后scroll-view的事件被遮罩拦截了, 请问有没有办法在遮罩上操作时 能够让scroll-view消费手势事件?
<view class="manifestBlock">
<scroll-view scroll-y="true" class='manifestScrollView' >
<block wx:for="{{manifests}}" wx:for-item="item" wx:for-index='index' wx:key="key">
<view class='manifestItem'>
<text>NO.{{index + 1}} </text>
<text>{{item.content}}</text>
</view>
</block>
</scroll-view>
<view class="mask"></view>
</view>