index.wxml 1.2 KB

1234567891011121314151617181920212223242526
  1. <view class="readingBox">
  2. <image src="{{videoInfo.userRead.coverImg}}" class='poster' wx:if="{{!state}}" />
  3. <video id="myVideo" src="{{videoInfo.userRead.videoPath}}" bindended='videoEnd' controls="{{false}}"
  4. show-center-play-btn="{{false}}" poster="{{videoInfoCopy.userRead.coverImg}}"></video>
  5. <view class="contentBox">
  6. <view class="articleMask"></view>
  7. <scroll-view class="content" scroll-y enhanced show-scrollbar="{{false}}" scroll-top="{{scrollTop}}"
  8. scroll-with-animation>
  9. <view style="height: 60rpx;"></view>
  10. <view class="row {{currentRow==index?'currentRow':''}}" wx:for="{{article}}" wx:key="id">{{item.text}}
  11. </view>
  12. </scroll-view>
  13. </view>
  14. <view class="controller">
  15. <image src="{{state?'/static/readingNow.gif':'/static/work.png'}}" class="playImg" bindtap="getRecordScore" />
  16. <view class="text">{{state?'完成录制':'开始挑战'}}</view>
  17. </view>
  18. <view class="playImgBg"></view>
  19. <!-- 倒计时 -->
  20. <view class="countDownBox" wx:if="{{countDown.state}}">
  21. <view class="countDown">
  22. <view class="number">{{countDown.num}}</view>
  23. <view class="tips">秒后开始</view>
  24. </view>
  25. </view>
  26. </view>