国产成人精品亚洲777人妖,欧美日韩精品一区视频,最新亚洲国产,国产乱码精品一区二区亚洲

您的位置:首頁技術(shù)文章
文章詳情頁

vue+js實現(xiàn)視頻淡入淡出效果

瀏覽:24日期:2023-02-15 09:14:55

vue+js實現(xiàn)視頻的淡入淡出,供大家參考,具體內(nèi)容如下

一個簡單的視頻淡入淡出效果如圖

vue+js實現(xiàn)視頻淡入淡出效果

小編直接上代碼了有興趣可以拷貝運行一下,謝謝

<template> <div class='video-css'> <div ref='videodom' style='background-color:black;'> <video ref='play' :src='http://www.intensediesel.com/bcjs/videoSrc2'></video> </div> <div class='video-but'> <el-button type='primary' @click='play()'>播放</el-button> <el-button type='primary' @click='pause()'>暫停</el-button> <el-button type='primary' @click='fadeIn(100)'>淡入</el-button> <el-button type='primary' @click='fadeOut(100)'>淡出</el-button> </div> </div></template><script>export default { data() { return { videoSrc: require(’../../assets/web_1496003377.mp4’), videoSrc2: require(’../../assets/video.mp4’) } }, methods: { play() { this.$refs.play.play() }, pause() { this.$refs.play.pause() }, fadeIn(speed) { let that = this var speed = speed || 30 ; var num = 0; var st = setInterval(function(){num++;that.$refs.play.style.opacity = num/10;if (num>=10) { clearInterval(st);} }, speed); }, fadeOut(speed) { let that = this var speed = speed || 30 ; var num = 10; var st = setInterval(function(){num--;that.$refs.play.style.opacity = num / 10 ;if (num<=0){ clearInterval(st);} }, speed); } }}</script><style lang='less' scoped>.video-css { .videocss { width: 800px; height: 450px; display: flex; justify-content: center; } .video-but { display: flex; margin-top: 20px; justify-content: flex-start; align-content: flex-start; }}</style>

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持好吧啦網(wǎng)。

標(biāo)簽: Vue
相關(guān)文章:
主站蜘蛛池模板: 东辽县| 琼海市| 永吉县| 镶黄旗| 海原县| 永清县| 依安县| 平潭县| 珠海市| 余干县| 汝阳县| 永清县| 日照市| 浦城县| 南宁市| 钟祥市| 津南区| 南溪县| 台山市| 永昌县| 苍南县| 左贡县| 崇信县| 庆安县| 祁阳县| 长葛市| 虞城县| 昆山市| 绥滨县| 日土县| 常熟市| 平谷区| 迁西县| 平和县| 吉木萨尔县| 承德县| 阿拉善盟| 柳州市| 凤庆县| 龙井市| 道孚县|