index.wxml 1.61 KB
Newer Older
李嘉林 committed
1 2
<view class="VideoPlayer"
 style="padding-top:{{datas.componentData.allPaddingList[0].value*2}}rpx;padding-right:{{datas.componentData.allPaddingList[1].value*2}}rpx;padding-bottom:{{datas.componentData.allPaddingList[2].value*2}}rpx;padding-left:{{datas.componentData.allPaddingList[3].value*2}}rpx;background-color:{{datas.componentData.backgroundColor}};background-image:url({{datas.componentData.backgroundImg}});background-size:100%;">
李嘉林 committed
3 4 5 6 7 8 9 10 11 12 13
	<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"
李嘉林 committed
14
			 autoplay="{{datas.componentData['autoPlay']}}"
李嘉林 committed
15 16
			 controls="{{datas.componentData['nativeControl']}}"
			 loop="{{datas.componentData['loopPlay']}}"
17
			 object-fit="cover"
18 19 20
			>
				<image wx:if="{{!firstPlay}}" src="{{datas.componentData['poster']}}" mode="widthFix"></image>
			</video>
李嘉林 committed
21 22 23 24 25 26 27 28 29
			<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
30 31 32
		<view class="isCodeSnippets" wx:if="{{datas.componentData['type']==3&&datas.componentData['codeSnippet']!=''}}">
			<rich-text nodes="{{datas.componentData['codeSnippet']}}"></rich-text>
		</view>
李嘉林 committed
33 34 35 36
	</view>

</view>