EP-WachatApp/eaterplanet_ecommerce/pages/index/template/video.wxml

9 lines
484 B
Plaintext

<template name="video">
<view class="index-video">
<view class="poster" bindtap="btnPlay" wx:if="{{fmShow}}">
<image class="img" src="{{data.poster}}" mode="widthFix" bindload="imageLoad" lazy-load></image>
<image class="play-img" src="../../images/play.png"></image>
</view>
<video wx:else src="{{data.url}}" controls style="height:{{imageSize.imageHeight}}px;width:100%;border-radius: 20rpx;" id="myVideo" bindended="videEnd"></video>
</view>
</template>