12345678910111213141516171819202122232425262728 |
- <view class="readingBox">
- <image src="{{videoInfo.userRead.coverImg}}" class='poster' wx:if="{{!state}}" />
- <video id="myVideo" src="{{videoInfo.userRead.originVideo}}" bindended='videoEnd' controls="{{false}}"
- show-center-play-btn="{{false}}" poster="{{videoInfoCopy.userRead.coverImg}}"></video>
- <view class="contentBox" wx:if="{{!readingReset}}">
- <view class="articleMask"></view>
- <scroll-view class="content" scroll-y enhanced show-scrollbar="{{false}}" scroll-top="{{scrollTop}}"
- scroll-with-animation>
- <view style="height: 180rpx;"></view>
- <view class="row {{currentRow==index?'currentRow':''}}" wx:for="{{article}}" wx:key="id">{{item.text}}
- </view>
- <view style="height: {{contentH}}rpx;"></view>
- </scroll-view>
- </view>
- <view class="controller">
- <image src="{{state?'/static/readingNow.gif':'/static/work.png'}}" class="playImg" bindtap="setCountDown" />
- <view class="text">{{state?'完成录制':readingReset?'点击重录':'开始挑战'}}</view>
- <uploadFile wx:if="{{readingReset}}" class="btnPosition"/>
- </view>
- <view class="playImgBg"></view>
- <!-- 倒计时 -->
- <view class="countDownBox" wx:if="{{countDown.state}}">
- <view class="countDown">
- <view class="number">{{countDown.num}}</view>
- <view class="tips">秒后开始</view>
- </view>
- </view>
- </view>
|