lrj
83 分钟以前 29fc6f5b1981775be5d2f0f9f8e61fec2f550252
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<view class="video-container">
  <video 
    class="video-player"
    src="{{videoUrl}}"
    controls="{{showControls}}"
    autoplay="{{true}}"
    show-center-play-btn="{{true}}"
    show-play-btn="{{true}}"
    show-fullscreen-btn="{{true}}"
    show-progress="{{true}}"
    enable-progress-gesture="{{true}}"
    object-fit="contain"
    binderror="onVideoError"
    bindplay="onVideoPlay"
    bindpause="onVideoPause"
    bindended="onVideoEnded"
  ></video>
  
  <view class="video-info" wx:if="{{title}}">
    <text class="video-title">{{title}}</text>
  </view>
</view>