index.wxml 1.07 KB
Newer Older
李嘉林 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
<view class="VideoPlayer">
	<view class="title" wx:if="{{datas.componentData['title']}}">
		<text>{{datas.componentData['title']}}</text>
	</view>
	<view class="main">
		<view class="isVideo" wx:if="{{datas.componentData['type']<3}}">
			<video
			 bindtap="playVideo"
			 id="videoId{{indexs}}"
			 src="{{datas.componentData['videoUrl']}}"
			 show-center-play-btn="{{datas.componentData['nativeControl']}}"
			 type="video/mp4"
			 controls="{{datas.componentData['nativeControl']}}"
			 loop="{{datas.componentData['loopPlay']}}"
			 poster="{{datas.componentData['poster']}}"
			/>
			<view
			 class="playerBtn"
			 bindtap="playVideo"
			 wx:if="{{!isPlay&&!datas.componentData['nativeControl']}}"
			>
				<image src="http://mayi-newshop.oss-cn-shanghai.aliyuncs.com/public/png/06420e41-cd0b-4913-a1ef-9056ceebcc95.png" />
			</view>
		</view>
		<!-- 代码片段展示 -->
李嘉林 committed
26 27 28
		<view class="isCodeSnippets" wx:if="{{datas.componentData['type']==3&&datas.componentData['codeSnippet']!=''}}">
			<rich-text nodes="{{datas.componentData['codeSnippet']}}"></rich-text>
		</view>
李嘉林 committed
29 30 31 32
	</view>

</view>