1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <StatusBar receiveData="{{statusbarobj}}" grade="{{grade}}" bindgradeTap="gradeTap" />
- <view class="readingPage">
- {{!isIOS}}
- {{!videoLoad}}{{iconImg}}
- <video id="myVideo" class="videoSection" src="{{videoUrl}}" show-fullscreen-btn="{{fullScreenBtn}}" show-play-btn="{{playBtn}}" show-center-play-btn="{{centerBtn}}" muted="{{muted}}" enable-progress-gesture="{{gesture}}" bindended="recordingVideoEnd"></video>
-
- {{recordSource}}
- <scroll-view class="textSection" scroll-y="true">
- <view class="btn_wrapper" bindtap="audioRecord">
- <view class="reading_btn">
- <image src="../../../static/index/star.png" />
- <text>我要配音</text>
- </view>
- </view>
- <text class="textContent">{{readingText}}</text>
- </scroll-view>
-
- {{btnFlag}}
- {{btnImgFlag ? recordingGif :microphonePng}}
- {{btnImgFlag ? '点击结束' : btnFlag ? '点击重录' : '开始朗读'}}
- {{btnFlag}}
- <VideoSwiper
- wx:if="{{videoList.length > 0}}"
- class="video-swiper"
- video-list="{{videoList}}"
- nextMargin="{{nextMargin}}"
- bindopenComment="openComment"
- bindheadTap="headTapHandler"
- bindgoToReading="goToReading"
- bindplay="onPlay"
- >
-
- </VideoSwiper>
- </view>
|