<view class="viewo-warp">
<video class="video" object-fit="cover" :id="item.id" :ref="item.id" :src="item.src"
:controls="false" :loop="true" :show-center-play-btn="false" @timeupdate="timeupdateHandle"
@click="videoClickHandle">
<cover-view class="video-content">
<text class="text-white margin-bottom">info</text>
<text class="text-white text-df">info</text>
<text class="text-white text-df">info</text>
</cover-view>
<cover-view class="video-features" @click.stop.prevent>
<uni-icons type="contact" color="white" size="45" class="margin-bottom"></uni-icons>
<uni-icons type="heart" color="white" size="45" class="margin-bottom"></uni-icons>
<uni-icons type="chatboxes" color="white" size="38" class="margin-bottom"></uni-icons>
<uni-icons type="redo-filled" color="white" size="40" @click.stop.prevent="toShared"></uni-icons>
</cover-view>
<cover-view class="video-play-ctrl" v-if="!playing">
<uni-icons type="forward" color="white" size="75"></uni-icons>
</cover-view>
</video>
<view class="progress-bar-warp">
<text class="progress-bar" :style="{ 'width': videoProgress }"></text>
</view>
</view>
事件 toShared 仍然会冒泡到 video 标签上, videoClickHandle 已经被执行
0 个回复