日本不卡不码高清免费观看,久久国产精品久久w女人spa,黄色aa久久,三上悠亚国产精品一区二区三区

您的位置:首頁技術文章
文章詳情頁

利用Vue實現簡易播放器的完整代碼

瀏覽:131日期:2022-10-14 15:03:20

看b站某馬學習,實現一個屬于自己的播放器

利用Vue實現簡易播放器的完整代碼

HTML+CSS+JS

<section id='xwyy'><!--主體區域--><section style='margin-top: 30px;'><div class='nav'><div class='nava'><h1>小王音樂</h1></div><!--搜索框--><div class='navb'><input type='text' autocomplete='off' v-model.lazy='query' @keyup.enter='searchMusic' placeholder='搜索想聽的歌' /></div></div><div class='boxa'><!--歌曲列表--><div class='boxa1'><ul><li v-for='item in musicList'><a href='http://m.b3g6.com/bcjs/10457.html#' @click='playMusic(item.id)' class='iconfont icon-bofang1'></a><label>{{item.name}}</label><a href='http://m.b3g6.com/bcjs/10457.html#' v-if='item.mvid!=0' @click='playMv(item.mvid)' class='iconfont icon-MV'> </a></li></ul></div><!--歌曲信息--><div :class='{playing:isPlayin}'><img src='http://m.b3g6.com/bcjs/img/cd1.png' /><img src='http://m.b3g6.com/bcjs/img/cd.png' /><img :src='http://m.b3g6.com/bcjs/musicCover' /></div><!--歌曲評論--><div class='boxa3'><h1>熱門評論</h1><div v-for='item in hotComments'><div class='boxa3_nr1'><img :src='http://m.b3g6.com/bcjs/item.user.avatarUrl' /></div><div class='boxa3_nr2'><h3>{{item.nickname}}</h3><div class='a3p'>{{item.content}}</div></div></div></div></div><!--播放音樂--><div class='boxb'><audio :src='http://m.b3g6.com/bcjs/musicUrl' @play='play' @pause='pause' controls autoplay loop></audio></div><div v-show='isShow'><video ref=’video’ :src='http://m.b3g6.com/bcjs/mvUrl' controls='controls'></video></div><div @click='hide' v-show='isShow'></div></section> </section>

* {margin: 0;padding: 0;font-size: 12px;}ul {list-style: none;}body {background-image: url(../img/acg.jpg);background-size: 100%;position: relative;}.box {width: 1000px;height: 570px;background-color: rgba(205, 205, 205, 0.4);margin: 0 auto;position: relative;}.nav {width: 100%;height: 50px;display: flex;justify-content: space-between;align-items: center;box-sizing: content-box;background-image: linear-gradient(to bottom right, #e66465, #9198e5);/*漸變*/}.nav h1 {padding-left: 20px;color: #fff;font-size: 16px;}.navb {width: 230px;height: 25px;background-color: rgba(0, 0, 0, 0.3);border-radius: 10px;display: flex;align-items: center;overflow: hidden;margin-right: 20px;}.navb input {width: 80%;border: 0px;box-sizing: border-box;background-color: rgba(0, 0, 0, 0);margin-left: 10px;font-size: 12px;color: #fff;outline: none/*去掉聚焦框*/}/*改變input中placeholder的顏色*/.navb input::-ms-input-placeholder {color: silver;}.navb input::-webkit-input-placeholder {color: silver;}.boxa {width: 100%;min-height: 500px;box-sizing: content-box;display: flex;justify-content: space-between;}.boxa1 {width: 250px;height: 500px;display: flex;justify-content: center;border-right: 2px solid rgba(205, 205, 205, 0.3);overflow-x: hidden;scrollbar-width: none;/*兼容火狐*/-ms-overflow-style: none;/*兼容IE*/}.boxa1::-webkit-scrollbar {/*兼容谷歌*/display: none;}.boxa1 a {display: block;width: 15px;height: 15px;/*background-image: url(../img/bf.jpg);background-size:100% ;*/text-decoration: none;color: red;}.boxa1 i {display: block;width: 15px;height: 15px;background-image: url(../img/2.png);}.boxa1 li {display: flex;justify-content: space-between;align-items: center;width: 210px;padding: 5px;margin-top: 10px;/*background-color: rgba(0,0,0,0.2);*/color: #000;}.boxa1 label {margin-left: 20px;margin-right: 25px;}.boxa1 li:nth-of-type(2n+1) {background-color: rgba(0, 0, 0, 0.2);color: #fff;}.boxa2 {width: 500px;height: 500px;border-right: 1px solid rgba(205, 205, 205, 0.3);display: flex;justify-content: center;position: relative;overflow: hidden;}.boxa3 {width: 250px;height: 500px;position: relative;overflow-x: hidden;scrollbar-width: none;/*兼容火狐*/-ms-overflow-style: none;/*兼容IE*/}.boxa3::-webkit-scrollbar {/*兼容谷歌*/display: none;}.boxa3 h1 {position: absolute;top: 5px;left: 40%;}.boxa3_nr {width: 260px;height: ;margin-top: 30px;overflow: hidden;margin-left: 20px;}.boxa3_nr1 {width: 50px;height: 50px;float: left;overflow: hidden;border-radius: 50px;}.boxa3_nr2 {width: 150px;height: ;margin-left: 10px;float: left;overflow: hidden;}.boxa3_nr2 h3 {font-size: 15px;}.clear {clear: left;}.a3p {width: 150px;height: ;margin-top: 5px;}.boxa3 img {width: 100%;height: 100%;}.boxb {width: 100%;height: 40px;background-color: aliceblue;}.boxb audio {width: 100%;height: 100%;}/*是否正在播放*/.boxa2.playing .imgb,.boxa2.playing .imgc {animation-play-state: running;}/*桿*/.boxa2.playing .imga {transform: rotate(45deg);transition: .5s;}@keyframes Rotate {from {transform: rotateZ(0);}to {transform: rotateZ(360deg);}}/*旋轉的類名*/.autoRotate {animation-name: Rotate;animation-iteration-count: infinite;animation-play-state: paused;animation-timing-function: linear;animation-duration: 5s;}.imga {display: block;width: 120px;height: 60px;position: absolute;top: -5px;right: 100px;z-index: 3;transform: rotate(0);transform-origin: 12px 12px;transition: .5s;}.imgb {display: block;width: 300px;height: 300px;margin-top: 50px;position: relative;}.imgc {display: block;width: 220px;height: 220px;position: absolute;top: 19%;left: 29%;z-index: -2;border-radius: 100px;}.mv {width: 1000px;height: 600px;position: absolute;background-color: #000;top: 0;left: 0;z-index: 7;}.mk {width: 1000px;height: 600px;position: absolute;top: 0;left: 0;transform: scale(6);background-color: rgba(0, 0, 0, 0.7);z-index: 5;}.mv video {width: 100%;height: 100%;padding: 0px;margin: 0px;}

var xwyy = new Vue({el:'#xwyy',data:{query:'',musicList:[],musicUrl:'',musicCover:'',hotComments:[],isPlayin:false,isShow:false,mvUrl:''},methods:{/*歌曲搜索*/searchMusic:function(){var that = this;axios.get('https://autumnfish.cn/search?keywords='+this.query).then(function(response){that.musicList = response.data.result.songs;},function(err){});},/*歌曲播放*/playMusic:function(muiscId){var that = this;/*獲取歌曲地址*/axios.get('https://autumnfish.cn/song/url?id='+muiscId).then(function(response){that.musicUrl = response.data.data[0].url;},function(err){})/*獲取歌曲圖片*/axios.get('https://autumnfish.cn/song/detail?ids='+muiscId).then(function(response){that.musicCover = response.data.songs[0].al.picUrl;},function(err){})/*獲取歌曲評論*/axios.get('https://autumnfish.cn/comment/hot?type=0&id='+muiscId).then(function(response){that.hotComments = response.data.hotComments;},function(err){})},/*播放*/play:function(){this.isPlayin = true;},/*暫停*/pause:function(){this.isPlayin = false;},playMv:function(mvid){var that = this;axios.get('https://autumnfish.cn/mv/url?id='+mvid).then(function(response){that.isShow = true;that.mvUrl = response.data.data.url;},function(err){})},/*隱藏mv*/hide:function(){this.isShow = false;/*關閉mv*/this.$refs.video.pause();}}});

總結

到此這篇關于利用Vue實現簡易播放器的文章就介紹到這了,更多相關Vue實現簡易播放器內容請搜索好吧啦網以前的文章或繼續瀏覽下面的相關文章希望大家以后多多支持好吧啦網!

標簽: Vue
相關文章:
日本不卡不码高清免费观看,久久国产精品久久w女人spa,黄色aa久久,三上悠亚国产精品一区二区三区
成人影视亚洲图片在线| 天堂av在线一区| 91精品高清| 亚洲欧美日韩高清在线| 亚洲精品一区二区在线看| 欧美日韩少妇| 蜜臀av一区二区三区| 日韩动漫一区| 免费在线观看一区| 亚洲一本视频| 四虎国产精品免费观看| 水蜜桃精品av一区二区| 国产成人精品福利| 欧产日产国产精品视频| 国产综合激情| 中文字幕日本一区二区| 91亚洲精品视频在线观看| 日韩精品免费视频一区二区三区| 最新国产精品久久久| 国产极品久久久久久久久波多结野| 99精品国产一区二区三区| 视频一区在线播放| 亚洲精品影视| 欧美一区二区三区久久| 国产精品乱战久久久| 丝袜诱惑一区二区| 伊人久久亚洲热| 国产欧美日韩精品高清二区综合区| 美女高潮久久久| 欧美亚洲专区| 韩国精品主播一区二区在线观看| 天堂俺去俺来也www久久婷婷| 亚洲高清毛片| 久久亚洲人体| 欧美亚洲福利| 久久亚洲欧洲| 日韩精品首页| 国产精品对白久久久久粗| 日韩免费av| 欧美一级鲁丝片| 在线日韩成人| 青青久久av| 色偷偷偷在线视频播放| 国产日韩亚洲欧美精品| 一区二区三区四区在线观看国产日韩| 在线看片国产福利你懂的| 精品91福利视频| 日韩av中文字幕一区二区| 亚洲九九精品| 日本不卡一二三区黄网| 久久国产日本精品| 国产精东传媒成人av电影| 国产欧美在线观看免费| 69堂免费精品视频在线播放| 视频在线在亚洲| 蜜臀久久久99精品久久久久久| 国产亚洲永久域名| 尤物在线精品| 久久久久久久欧美精品| 成人免费电影网址| 欧美精品1区| 日韩视频1区| 亚洲日本国产| 欧美日韩一区自拍| 日本午夜精品久久久久| 国产精品一站二站| 福利一区和二区| 日韩久久电影| 一区在线视频观看| 水蜜桃久久夜色精品一区的特点| 石原莉奈在线亚洲三区| 日韩国产欧美一区二区三区| 欧美日韩午夜电影网| 麻豆精品新av中文字幕| 精品视频在线一区二区在线| 国产精品qvod| 国产精品99在线观看| 欧美日韩国产一区精品一区| 亚洲精品97| 欧美自拍一区| 性感美女一区二区在线观看| 亚洲精品国产偷自在线观看| 日本高清久久| 久久青青视频| 亚洲香蕉视频| av资源新版天堂在线| 中文在线一区| 动漫av一区| 欧美91在线|欧美| 日本va欧美va瓶| 精品国产精品久久一区免费式| 国产精品亚洲片在线播放| 人人香蕉久久| 日本91福利区| 亚洲综合在线电影| 欧美日韩 国产精品| 亚州av乱码久久精品蜜桃| 欧美精品福利| 九九综合九九| 国产精品一区二区三区美女 | 日韩成人精品一区二区三区| 在线手机中文字幕| 免费在线观看不卡| 午夜影院一区| 国产精品入口久久| 婷婷丁香综合| 日本中文字幕一区二区| 91青青国产在线观看精品| 蜜桃视频在线观看一区| 99久久精品费精品国产| 成人国产精选| 国产黄色精品| 日韩国产欧美三级| 日韩精选在线| 中文字幕亚洲影视| 中文字幕一区二区三区日韩精品| 蜜桃视频欧美| 免费一二一二在线视频| 国产精品qvod| 国产美女视频一区二区| 日本三级亚洲精品| 日韩精品久久久久久| 日韩在线观看一区二区三区| 亚洲一区二区三区中文字幕在线观看| 精品91久久久久| 亚洲一区网站| 久久国产成人| 午夜精品影视国产一区在线麻豆| 亚洲在线网站| 日本a级不卡| 国产精品15p| 国产精品成人a在线观看| 成年男女免费视频网站不卡| 精品少妇av| 国产伊人精品| 久久国产精品久久久久久电车| 石原莉奈在线亚洲二区| 亚洲一区二区小说| 久久亚洲精精品中文字幕| 中文字幕成在线观看| 不卡在线一区二区| 亚洲aa在线| 91综合视频| 夜夜嗨网站十八久久| 中文字幕日韩高清在线| 国产欧美日韩一区二区三区在线| 国产一区二区三区亚洲| 欧美女激情福利| 国产成年精品| 午夜日韩av| 欧美一级久久| av亚洲一区二区三区| 亚洲一卡久久| 欧美日韩夜夜| 日本少妇一区| 青草国产精品| 久久婷婷av| 国产日韩欧美一区| 欧美在线亚洲| 久久国产精品美女| 好看不卡的中文字幕| 国产精品日本一区二区三区在线| 久久九九国产| 日韩 欧美一区二区三区| 人在线成免费视频| 国产日产一区| 99国产精品| 亚洲播播91| 麻豆极品一区二区三区| 美女精品在线| 亚洲一区免费| 国产一区2区在线观看| 久久性天堂网| 免费av一区二区三区四区| 欧美成a人片免费观看久久五月天| 久久国产成人午夜av影院宅| 国产伦精品一区二区三区视频 | 麻豆一区二区三| 中文字幕日韩亚洲| av不卡在线看| 欧美va天堂在线| 91精品综合| 日韩精品欧美| 成人va天堂| 中文字幕人成乱码在线观看| 欧美国产中文高清| 欧美久久亚洲| 国产欧美啪啪| 日本不卡的三区四区五区| 亚洲免费在线| 久久xxxx| 亚洲一级淫片| 日韩av黄色在线| 青青青国产精品| 国产色噜噜噜91在线精品| 久久成人福利| 91亚洲自偷观看高清| 国产v日韩v欧美v| 欧洲av一区二区| 激情婷婷欧美|