小編給大家分享一下如何使用vue.js實(shí)現(xiàn)輪播,希望大家閱讀完這篇文章后大所收獲,下面讓我們一起去探討吧!
成都創(chuàng)新互聯(lián)專(zhuān)業(yè)為企業(yè)提供六安網(wǎng)站建設(shè)、六安做網(wǎng)站、六安網(wǎng)站設(shè)計(jì)、六安網(wǎng)站制作等企業(yè)網(wǎng)站建設(shè)、網(wǎng)頁(yè)設(shè)計(jì)與制作、六安企業(yè)網(wǎng)站模板建站服務(wù),10年六安做網(wǎng)站經(jīng)驗(yàn),不只是建網(wǎng)站,更提供有價(jià)值的思路和整體網(wǎng)絡(luò)服務(wù)。使用vue.js實(shí)現(xiàn)輪播的方法:首先使用“<transition name="targetClassName">”將相應(yīng)的元素包裹??;然后在“.imgShoudMove”中設(shè)置動(dòng)畫(huà)屬性;最后采用Vue結(jié)合Css3來(lái)實(shí)現(xiàn)輪播圖即可。
首先要了解的是Vue的動(dòng)畫(huà)原理。在vue中,如果我們要給元素設(shè)置動(dòng)畫(huà)效果,則需要使用一個(gè)<transition name="targetClassName"></transition>將相應(yīng)的元素包裹住,如下:
<transition name="imgShouldMove"> <img v-if="shouldShow" src="/1.jpg"> </transition>
之后,便可以在.imgShoudMove中設(shè)置動(dòng)畫(huà)屬性了,如下:
.imgShouldMove-enter{ transition: all 0.5s; } .imgShouldMove-enter-active{ transform:translateX(900px); }
注意在HTML中,這里<img>有一個(gè)v-if="shoudShow"屬性。shouldShow這個(gè)屬性是在data(){}中設(shè)置的,當(dāng)shouldShow從false-->true時(shí)(即img從無(wú)到突然出現(xiàn)時(shí)),
Vue動(dòng)畫(huà)原理將動(dòng)畫(huà)分為了 shouldShouldMove-enter 和 imgShouldMove-enter-active 兩個(gè)階段。
其中 shouldShouldMove-enter 表示動(dòng)畫(huà)開(kāi)始的初始狀態(tài), imgShouldMove-enter-active 這表示動(dòng)畫(huà)的終止?fàn)顟B(tài)。而動(dòng)畫(huà)的觸發(fā)則是通過(guò)if-show引起的。
示例:
HTML代碼:
<template> <div class="carousel" @mouseenter="clearInv()" @mouseleave="runInterval()"> <div class="imgBox"> <a :href="pics[currentIndex].href" rel="external nofollow" > <transition v-bind:name="'carousel-trans-' + direction + '-old'"> <!-- isShow: false -> true 取反后: true -> false(從顯示到消失) --> <img v-if="!isShow" :src="pics[currentIndex].src"> </transition> <transition v-bind:name="'carousel-trans-' + direction "> <!-- isShow: false -> true --> <!-- 從消失到顯示 --> <img v-if="isShow" :src="pics[currentIndex].src"> </transition> </a> </div> <h3>{{pics[currentIndex].title}}</h3> <ul class="pagination"> <li v-for="(item, index) in pics" @click="goto(index)" : class="{active:index === currentIndex}">{{index + 1}}</li> </ul> <div class="prevBtn" @click="goto(prevIndex)"><i class="iconfont"></i></div> <div class="nextBtn" @click="goto(nextIndex)"><i class="iconfont"></i></div> </div> </template> Script代碼: <script> export default { props:{ pics:{ type:Array, default:[] }, timeDelta:{ type:Number, default:2000 } }, data () { return { currentIndex:0, isShow:true, direction:'toleft' } }, computed:{ prevIndex(){ this.direction = 'toleft' if (this.currentIndex <= 0) { return this.pics.length - 1 } return this.currentIndex - 1 }, nextIndex(){ this.direction = 'toright' if (this.currentIndex >= this.pics.length - 1) { return 0 } return this.currentIndex + 1 } }, methods:{ goto(index){ this.isShow = false setTimeout(()=>{ this.isShow = true this.currentIndex = index },10) }, runInterval(){ this.direction = 'toright' this.timer = setInterval(()=>{ this.goto(this.nextIndex) },this.timeDelta) }, clearInv(){ clearInterval(this.timer) } }, mounted(){ this.runInterval() } } </script>
與動(dòng)畫(huà)相關(guān)的css代碼如下
.carousel-trans-toright-enter-active, .carousel-trans-toright-old-leave-active{ transition:all 0.5s; } .carousel-trans-toright-enter{ transform:translateX(940px); //新圖片從右側(cè)940px進(jìn)入 } .carousel-trans-toright-old-leave-active{ transform:translateX(-940px); //老圖片向左側(cè)940px出去 } .carousel-trans-toleft-enter-active, .carousel-trans-toleft-old-leave-active{ transition:all 0.5s; } .carousel-trans-toleft-enter{ transform:translateX(-940px); //新圖片從右側(cè)940px進(jìn)入 } .carousel-trans-toleft-old-leave-active{ transform:translateX(940px); //老圖片向左側(cè)940px出去 }
注意:對(duì)于<img>需要放在<box>里面,<box>需要設(shè)置為position:relative; 而<img>必須設(shè)置為position:absolute; 這步非常非常重要,否則每次莫名其妙的總是只有一張圖片顯示。
在每次切換的時(shí)候,都要觸發(fā)goto()方法,將this.isShow先置false,10毫秒后,this.isShow置true。這時(shí),html中的<transition>被觸發(fā),它與css相結(jié)合觸發(fā)動(dòng)畫(huà)效果,持續(xù)時(shí)間為css屬性中的transition所定的0.5s。
在向前、向后切換的時(shí)候,使用到了計(jì)算屬性,在div.prevBtn以及div.nextBtn上,我們作了點(diǎn)擊事件綁定,觸發(fā)方法goto(),而傳入的正是計(jì)算屬性prevIndex, @click="goto(prevIndex)"
計(jì)算屬性的設(shè)定方法如下:
computed:{ prevIndex(){ //經(jīng)過(guò)一番計(jì)算過(guò)程得出result return result //這個(gè)值即<template>中的prevIndex } },
每隔2秒自動(dòng)滑動(dòng)時(shí),我們向left滑動(dòng),在data中,設(shè)定了變量 direction ,它的值要么為字符串'toleft',要么為'toright'。
我們?cè)谟?jì)算屬性中對(duì) this.direction 進(jìn)行了設(shè)置,并在<template>中對(duì)相應(yīng)的name進(jìn)行了字符串拼接,如下
<transition v-bind:name="'carousel-trans-' + direction ">
在vue中,除了class和style可以傳入對(duì)象、數(shù)組,其他的屬性綁定必須進(jìn)行字符串拼接。
看完了這篇文章,相信你對(duì)如何使用vue.js實(shí)現(xiàn)輪播有了一定的了解,想了解更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!
本文名稱:如何使用vue.js實(shí)現(xiàn)輪播-創(chuàng)新互聯(lián)
文章分享:http://jinyejixie.com/article20/dedgjo.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站排名、云服務(wù)器、營(yíng)銷(xiāo)型網(wǎng)站建設(shè)、Google、軟件開(kāi)發(fā)、企業(yè)建站
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容