123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- <template>
- <div class="videoBox warp" :class="'terminal' + terminal">
- <div class="videoLeftBox">
- <h3>{{componentContent.title}}</h3>
- <div v-html="componentContent.mainBody"></div>
- </div>
- <div class="videoRightBox" v-if="componentContent.coverImg && isPlay">
- <video class="myVideo" id="myVideo" :src="componentContent.videoUrl" enable-danmu danmu-btn controls></video>
- </div>
- <div class="videoCoverBox" v-if="componentContent.coverImg && !isPlay" @click="handlePlayVideo">
- <image :src="componentContent.coverImg" />
- </div>
- <div class="videoRightBox" v-if="!componentContent.coverImg">
- <video class="myVideo" id="myVideo" :src="componentContent.videoUrl" enable-danmu danmu-btn controls></video>
- </div>
- <div class="clear"></div>
- <!-- <div style="width:100vw;height:200px">
- <image :src="componentContent.coverImg" />
- </div>-->
- </div>
- </template>
- <script>
- export default {
- name: 'videoBox',
- props: {
- terminal: {
- type: Number,
- default: 4
- },
- componentContent: {
- type: Object
- }
- },
- created(){
- },
- mounted() {
- this.videoContext = uni.createVideoContext('myVideo',this)
- },
- data () {
- return {
- isPlay:false,
- videoContext:null
- }
- },
- methods:{
- handlePlayVideo(){
- this.isPlay = true
- setTimeout(()=>{
- this.videoContext.play()
- },500)
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .videoBox {
- padding: 20upx 0;
- display: flex;
- justify-content: flex-start;
- align-items: center;
- .videoLeftBox {
- width: 50%;
- padding-right: 10%;
- h3 {
- font-size: 28upx;
- color: #333333;
- margin-bottom: 30upx;
- }
- p {
- color: #333333;
- font-size: 14upx;
- line-height: 30upx;
- }
- }
- .videoRightBox {
- width: 50%;
- video {
- width: 100%;
- }
- }
- .clear {
- clear: both;
- }
- }
- .terminal1,.terminal2,.terminal3{
- &.videoBox{
- display: block;
- .videoLeftBox{
- width: 100%;
- text-align: center;
- margin-bottom: 20upx;
- }
- .videoRightBox {
- width: 100vw;
- height: 56.25vw; //16:9
- }
- }
- }
- .videoCoverBox{
- width: 100vw;
- height: 56.25vw; //16:9
- position: relative;
- &:before{
- content: '';
- width: 0rpx;
- height: 0rpx;
- border-left:80rpx solid #fff;
- border-right:50rpx solid transparent;
- border-top:50rpx solid transparent;
- border-bottom:50rpx solid transparent;
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-30%,-50%);
- z-index: 99;
- }
- image{
- width: 100%;
- height: 100%;
- }
- }
- </style>
|