You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
592 B

<!--pages/test/view.wxml-->
<text>pages/test/view.wxml</text>
<view class="demobox">
<view class="title">1.不阻止父容器的view_hover</view>
<view class="view_parent" hover-class="view_hover">
我是父容器
<view class="view_son" hover-class="view_hover">我是子容器</view>
</view>
<view class="title">2.阻止父容器的view_hover</view>
<view class="view_parent" hover-class="view_hover">
我是父容器
<view class="view_son" hover-class="view_hover" hover-stop-propagation="true">我是子容器</view>
</view>
</view>