123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302 |
- <template name="vodShort">
- <view>
- <swiper class="swiper" autoplay="false" vertical="true" interval="990000" @change="changeVideo">
- <swiper-item v-for="(v, k) in item.text">
-
- <video
- :src="v.video"
- preload
- :muted="muted"
- show-play-btn="true"
- controls="false"
- v
- loop="true"
- :id="`video_${v.order}`"
- objectFit="fill"
- :enable-progress-gesture="false"
- @click="clickVideo"
- ref="video_url"
- play-btn-position="center"
- class="video"
- :poster="v.pic"
- @timeupdate="timeupdate">
- </video>
-
- <cover-image
- class="play" v-if="show_play"
- @tap="videoPlay"
- src="../../static/video/play.png"></cover-image>
-
- <cover-view class="cover-view-left">
- <text class="view-left-text">@{{ v.name }}</text>
- <view class="view-left-text-content">
- <text class="text-content-text">{{ v.name }}</text>
- </view>
- </cover-view>
-
- <cover-view class="cover-view-right">
- <cover-image :src="item.pic"
- class="avater img"
- @click.stop="tapAvater"></cover-image>
-
- <text class="right-follow">+</text>
- <cover-image
- style="position:relative;top:-20upx;"
- :src="up ? '../../static/video/axc.png' : '../../static/video/bed.png'"
- class="img-left" @click.stop="tapLove"></cover-image>
-
- <text class="right-text">1</text>
- <cover-image src="../../static/video/ay2.png"
- style="height: 80upx;" class="img-left" @click.stop="tapMsg"></cover-image>
-
- <text class="right-text">10</text>
- <cover-image src="../../static/video/b6p.png"
- style="height: 76upx;" class="img-left" @click.stop="tapShare"></cover-image>
-
- <text class="right-text">10</text>
- <cover-image src="../../static/video/changpian.png" class="musicIcon img">
- </cover-image>
-
- <cover-view class="progressBar" :animation="animationData" ></cover-view>
-
-
- </cover-view>
-
-
-
-
-
- </swiper-item>
- </swiper>
- </view>
- </template>
- <script>
- var play = false;
- export default {
- name: "vodShort",
- props: {
- item : {
- type : Object,
- value : null
- },
- },
- data() {
- return {
- up: false,
- time: 0,
- barWidth:0,
- animationData: {},
- times:null,
- play: false,
- show_play:false,
- muted: true,
- current_index: 0
- };
- },
- created() {
- setTimeout(()=>{
- play = true;
- this.videoPlay();
- },1000)
- },
- methods:{
- timeupdate(event) {
- let t_w = parseInt(this.width);
- this.duration = event.detail.duration;
- this.time = event.detail.currentTime;
- let width = (this.time / this.duration) * t_w;
- let w = 0;
- },
- clickVideo() {
- // console.log('单视频点击事件');
- this.videoPlay();
- },
- videoPlay() {
- console.info(this.item.text);
- let video_id = this.item.text[this.current_index].order;
-
- if (play) {
- console.log('播放视频',`video_${video_id}`);
- this.muted = false;
- this.videoCtx = uni.createVideoContext(`video_${video_id}`, this);
- this.videoCtx.play();
- this.show_play = false;
- play = false;
- } else {
- console.log('暂停视频',`video_${video_id}`);
- this.muted = true;
- this.videoCtx = uni.createVideoContext(`video_${video_id}`, this);
- this.videoCtx.pause();
- this.show_play = true;
- play = true;
- }
- },
- videoPause() {
- let video_id = this.item.text[this.current_index].order;
- this.videoCtx = uni.createVideoContext(`video_${video_id}`, this);
- this.videoCtx.pause();
- this.show_play = true;
- play = true;
- },
- changeVideo(e){
-
- // 暂停之前的视频
- this.videoPause();
- this.current_index = e.detail.current;
- console.log(e.detail.current);
- // 播放现在的视频
- this.videoPlay();
-
- // 判断是否第一条
- if( e.detail.current == 0 ){
- console.log('到顶了');
- return false;
- }
-
- // 判断是否最后一条
- if( e.detail.current == this.item.text.length-1 ){
- console.log('到底了');
- return false;
- }
-
- },
- tapMsg(e) {
- console.log(5, e);
- },
- tapShare(e) {
- console.log(6, e);
- },
- tapLove(e) {
- // item.is_dianzan
- this.item.text[this.current_index].is_dianzan = !this.item.text[this.current_index].is_dianzan;
- console.log(7, e);
- }
- },
- watch: {
- play(newVal, oldVal) {
- this.videoPlay();
- }
- }
- }
- </script>
- <style>
- .swiper{
- width: 100vw;
- height: 100vh;
- position: fixed;
- top: 0;
- left: 0;
- }
- .video {
- width: 100%;
- height: 100%;
- position: relative;
- }
- .play{
- position: absolute;
- width: 20vw;
- height: 20vw;
- left: 40vw;
- top: 40vh;
- opacity: 0.5;
- }
- .progressBar {
- border-radius: 2upx;
- height: 4upx;
- background-color: #FF4500;
- z-index: 999999;
- position: absolute;
- bottom: 68rpx;
- }
- .cover-view-left {
- position: absolute;
- margin-left: 20upx;
- width: 580upx;
- bottom: 110upx;
- z-index: 9999;
- font-size: 14px;
- color: #ffffff;
- }
- .left-text {
- font-size: 14px;
- color: #ffffff;
- }
- .cover-view-right {
- position: absolute;
- bottom: 40px;
- right: 30upx;
- z-index: 9999;
- text-align: center;
- }
- .avater {
- border-radius: 50%;
- border-width: 2px;
- border-style: solid;
- border-color: #ffffff;
- }
- .img {
- height: 90upx;
- width: 90upx;
- margin-bottom: 110upx;
- }
- .img-left {
- width: 80upx;
- height: 66upx;
- padding-left: 4px;
- }
- .right-follow {
- position: absolute;
- z-index: 100;
- top: 75upx;
- left: 28upx;
- color: #ffffff;
- font-size: 16px;
- width: 34upx;
- height: 34upx;
- background-color: #f12f5b;
- text-align: center;
- line-height: 34upx;
- border-radius: 17upx;
- }
- .right-text {
- color: #ffffff;
- font-size: 11px;
- text-align: center;
- margin-bottom: 40upx;
- }
- .musicIcon {
- margin-top: 40upx;
- }
- @keyframes rotating {
- from {
- transform: rotate(0);
- }
- to {
- transform: rotate(360deg);
- }
- }
- .view-left-text-content {
- flex: 1;
- }
- .view-left-text {
- color: #ffffff;
- font-size: 18px;
- margin-bottom: 10upx;
- font-weight: bold;
- }
- .text-content-text {
- color: #ffffff;
- font-size: 16px;
- line-height: 50upx;
- height: 100upx;
- overflow: hidden;
- }
- </style>
|