1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <StatusBar receiveData="{{statusbarobj}}" grade="{{grade}}" bindgradeTap="gradeTap" />
- <view class="readingPage">
- <!-- <view class="videoSection" wx:if="{{!isIOS}}">
- <image wx:if="{{!videoLoad}}" class="videoIcon" src="{{iconImg}}" />
- </view> -->
- <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>
- <!-- bindwaiting="videoWaiting"
- bindplay="videoPlay" -->
- <!-- <audio name="123" author="123" src="{{recordSource}}" id="myAudio" controls loop></audio> -->
- <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>
- <!-- <view class="footSection">
- <image class="blackbord" src="../../../static/image/blackbord.png" />
- <view class="collectBtn footerBtn" wx:if="{{btnFlag}}" bindtap="audioPlay">
- <image src="../../../static/image/listen.png" />
- <text>试听</text>
- </view>
- <view class="readingBtn footerBtn" bindtap="audioRecord">
- <image class="microphone" src="{{btnImgFlag ? recordingGif :microphonePng}}" />
- <text>{{btnImgFlag ? '点击结束' : btnFlag ? '点击重录' : '开始朗读'}}</text>
- </view>
- <view class="shareBtn footerBtn" wx:if="{{btnFlag}}" bindtap="upload">
- <image src="../../../static/image/upload.png" />
- <text>上传</text>
- </view>
- </view> -->
- <VideoSwiper
- wx:if="{{videoList.length > 0}}"
- class="video-swiper"
- video-list="{{videoList}}"
- nextMargin="{{nextMargin}}"
- bindopenComment="openComment"
- bindheadTap="headTapHandler"
- bindgoToReading="goToReading"
- bindplay="onPlay"
- >
- <!-- bindplay="onPlay"
- bindpause="onPause"
- bindtimeupdate="onTimeUpdate"
- bindended="onEnded"
- binderror="onError"
- bindwaiting="onWaiting"
- bindprogress="onProgress"
- bindloadedmetadata="onLoadedMetaData" -->
- </VideoSwiper>
- </view>
|