123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280 |
- <template>
- <view class="video">
- <video :src="src" :controls="controls" :show-center-play-btn="controls" :show-play-btn="controls" play-btn-position="center" autoplay="true" :muted="!load||!play"
- :style="{ height: height }" :loop="true" @controlstoggle="controlstoggle" @fullscreenchange="screenChange" @play="continuePlay"
- :enable-progress-gesture="false" :objectFit="objectFit" @ended="playEnd" :initial-time="startTime"
- :id="`video_${src}`" ref="`video_${src}`" class="video" @timeupdate="timeupdate">
- </video>
- <cover-view class="icon-view" v-if="!play&&!playFirst">
- <!-- <text class="icon" style="color:#FFF"></text> -->
- </cover-view>
- <cover-image class="img" :style="{ height: height }" :src="poster" v-if="poster!=''&&playFirst"></cover-image>
- <cover-view class="top"></cover-view>
- <!-- <cover-view class="bottom"></cover-view> -->
- <!-- #ifdef APP-PLUS -->
- <cover-view class="danmu-view">
- <chunLei-danmu :danmuList="danmuList" :width="750" :current="time" ref="danmu"></chunLei-danmu>
- </cover-view>
- <!-- #endif -->
- <!-- #ifndef MP-WEIXIN -->
- <cover-view class="slider-view">
- <chunLei-slider :max="duration" :value="time" :style="{width:`${100}%`}" :screenLeft="120" :width="380" @change="changeCurrent"></chunLei-slider>
- </cover-view>
- <cover-image :src="rotateImg" class="rotate-img" :style="{transform:`rotate(${time*20}deg)`}"></cover-image>
- <!-- #endif -->
- <!-- #ifdef MP-WEIXIN -->
- <!-- <cover-view class="progressBar" :style="{ width: barWidth }"></cover-view> -->
- <!-- #endif -->
- </view>
- </template>
- <script>
-
- import chunLeiSlider from './chunLei-slider/chunLei-slider.nvue';
- //#ifdef APP-NVUE
- import chunLeiDanmu from './chunLei-danmu/chunLei-danmu.nvue';
- //#endif
- export default{
- components:{
- chunLeiSlider,
- //#ifdef APP-NVUE
- chunLeiDanmu
- //#endif
- },
- props:{
- controls:{
- type:Boolean,
- default:false
- },
- src:{
- type:String,
- default:''
- },
- rotateImg:{
- type:String,
- default:''
- },
- play:{
- type:Boolean,
- default:false
- },
- height:{
- type:String,
- default:''
- },
- width:{
- type:String,
- default:''
- },
- initialTime:{
- type:Number,
- default:0
- },
- gDuration:{
- type:Number,
- default:999
- }, //大概时长使进度条更准确
- objectFit:{
- type:String,
- default:'contain'
- },
- poster:{ //视频封面的图片
- type:String,
- default:''
- },
- danmuList:{
- type:Array,
- default:[]
- }
- },
- data(){
- return{
- time:0,
- duration:0,
- playFirst:true,
- load:false,
- timer:null
- }
- },
- beforeCreate() {
- // #ifdef APP-NVUE
- var domModule = weex.requireModule('dom');
- domModule.addRule('fontFace', {
- 'fontFamily': "texticons",
- 'src': "url('//static/chunlei-video/text-icon.ttf')"
- });
- // #endif
- },
- mounted() {
- this.videoCtx = uni.createVideoContext(`video_${this.src}`,this)
- //#ifndef MP-WEIXIN
- setTimeout(()=>{this.videoCtx.play();},200)
- // #endif
- },
- methods:{
- continuePlay(){
- if(!this.load){
- this.load = true
- this.videoPlay()
- }
- },
- //拖动滑块
- changeCurrent(e){
- this.time = e.detail.value
- this.videoCtx.seek(this.time)
- },
- screenChange(e){
- //console.log(e.detail.fullScreen);
- this.$emit('screenChange',e.detail.fullScreen)
- },
- controlstoggle(e){
- console.log(e.detail.show);
- //console.log(99999999);
- this.$emit('controlstoggle',e.detail.show)
- },
-
- playEnd(){
- // console.log(2222222);
- this.videoCtx.exitFullScreen()
- this.$emit('playEnd')
- },
- timeupdate(event){
- this.duration = event.detail.duration
- if(this.time>=event.detail.duration) this.time=0
- this.time = event.detail.currentTime
- this.$emit('timeupdate',this.time)
- },
- videoPlay:function(){
- if(this.timer) clearTimeout(this.timer)
- this.timer = setTimeout(()=>{
- console.log(this.play)
- if(this.play){
- this.videoCtx.play();
- this.playFirst = false
- }else{
- this.videoCtx.pause();
- this.$emit('pause',this.time)
- }
- })
- },
- },
- watch:{
- //防抖 防止视频播放暂停太快
- play: function (newVal,oldVal){if(this.load) this.videoPlay()},
- startTime:{
- immediate: true,
- handler(newVal,oldVal){
- this.time = newVal
- }
- },
- gDuration:{
- immediate: true,
- handler(newVal,oldVal){
- this.duration = newVal
- }
- }
- },
- computed:{
- barWidth(){
- let width = this.time/this.duration*parseInt(this.width)
- return `${width}px`
- },
- startTime(){
- return this.initialTime
- }
- }
- }
- </script>
- <style scoped>
- /* #ifndef APP-PLUS-NVUE */
- @font-face {
- font-family: "texticons";
- src: url('~@/static/chunlei-video/text-icon.ttf') format('truetype');
- }
- /* #endif*/
- .video{
- /* #ifndef APP-NVUE */
- display: flex;
- /* #endif */
- width: 750rpx;
-
- justify-content: center;
- align-items: center;
- }
- .img{
- position: absolute;
-
- width: 750rpx;
- }
- .icon-view{
- position: absolute;
- }
- .top{
- position: absolute;
- top:0;
- background-image: linear-gradient(to top , rgba(0,0,0,0) , rgba(0,0,0,0.7));
- width: 750rpx;
- height: 300rpx;
- }
- .icon{
- opacity: 0.6;
- font-size: 42px;
- color: #fff;
- /* #ifndef APP-PLUS-NVUE */
- font-family: "texticons";
- /* #endif*/
- font-family: texticons;
- }
- .bottom{
- position: absolute;
- bottom: 0;
- background-image: linear-gradient(to top , rgba(0,0,0,0.7) , rgba(0,0,0,0));
- width: 750rpx;
- height: 300rpx;
- }
- .slider-view{
- position: absolute;
- left: 0;
- bottom: 0px;
- width: 750rpx;
- }
- .progressBar{
- border-radius: 2upx;
- height: 4upx;
- background-color: #FFFFFF;
- z-index: 999999;
- position: absolute;
- left: 0;
- bottom: 30px;
- //#ifndef APP-PLUS-NVUE
- animation: flicker 4s linear infinite;
- animation-direction:alternate;
- //#endif
- }
- //#ifndef APP-PLUS-NVUE
- @keyframes flicker {
- 0% { box-shadow:0 0 0 #FFFFFF; }
- /** 暂停效果 */
- 10% { box-shadow:0 0 2upx #FFFFFF; }
- 50% { box-shadow:0 0 10upx #FFFFFF; }
- 60% { box-shadow:0 0 12upx #FFFFFF; }
- 90% { box-shadow:0 0 18upx #FFFFFF; }
- 100% { box-shadow:0 0 20upx #FFFFFF; }
-
- }
- //#endif
- .danmu-view{
- position: absolute;
- top:0;
- height: 160px;
- }
- .rotate-img{
- width: 90rpx;
- height: 90rpx;
- position: absolute;
- bottom: 100rpx;
- right: 20rpx;
- border-radius: 45rpx;
- }
- </style>
|