index.wxml 945 B

1234567891011121314151617181920
  1. <template name="video">
  2. <view class="videoList" wx:for="{{content || []}}" wx:key="title" data-url="{{item.url}}" bindtap="playVideo">
  3. <image bindload="bindload" data-index="{{index}}" wx:if="{{!imgList[index]}}" style="width: 339rpx;" src="{{item.imgUrl}}">
  4. </image>
  5. <image bindload="bindload" wx:if="{{imgList[index]}}" style="height:{{imgList[index] + 'rpx;width: 339rpx;'}}"
  6. src="{{item.imgUrl}}"></image>
  7. <view class="titleStyle" wx:if="{{item.title}}">{{item.title}}</view>
  8. <view class="titleStyle">播放次数:{{item.play_count}}</view>
  9. </view>
  10. <view class="mantle" wx:if="{{playUrl}}">
  11. <view class="close" bindtap="closeVideo">
  12. <view class="left"></view>
  13. <view class="right"></view>
  14. </view>
  15. <video style="height:{{videoData.height}}px;width:{{videoData.width}}px" bindloadedmetadata="bindloadedmetadata"
  16. class="playVideo" src="{{playUrl}}"></video>
  17. </view>
  18. </template>