您好,登錄后才能下訂單哦!
本文實(shí)例為大家分享了vue實(shí)現(xiàn)多個(gè)元素或多個(gè)組件之間動(dòng)畫(huà)的具體代碼,供大家參考,具體內(nèi)容如下
多個(gè)元素的過(guò)渡
<style> .v-enter,.v-leave-to{ opacity: 0; } .v-enter-acitve,.v-leave-active{ opacity: opacity 1s; } </style> <div id='app'> <transition> <div v-if='show'>hello world</div> <div v-else>bye world</div> </transition> <button @click='handleClick'>切換</button> </div> <script> var vm = new Vue({ el:'#app', data:{ show:true }, methods:{ handleClick:function(){ this.show = !this.show; } } }) </script>
按照之前的寫(xiě)法方式,漸隱漸出的效果并沒(méi)有出現(xiàn)該有的效果,那么為什么呢?
在if else兩個(gè)元素切換的時(shí)候,會(huì)盡量的復(fù)用dom,正是vue,dom的復(fù)用,導(dǎo)致動(dòng)畫(huà)的效果不會(huì)出現(xiàn),如果想要vue不去復(fù)用dom,之前也說(shuō)過(guò),怎么做呢,給兩個(gè)div不同的key值就行了
<div v-if='show' key='hello'>hello world</div> <div v-else key='bye'>bye world</div>
這樣就可以有個(gè)明顯的動(dòng)畫(huà)效果,多個(gè)元素過(guò)渡動(dòng)畫(huà)的效果。
transition還提供了一個(gè)mode屬性,in-out是先顯示再隱藏,out-in是先隱藏再顯示
多個(gè)組件的過(guò)渡
<style> .v-enter, .v-leave-to { opacity: 0; } .v-enter-acitve, .v-leave-active { transition: opacity 1s; } </style> <div id='app'> <transition mode='out-in'> <child v-if='show'></child> <child-one v-else></child-one> </transition> <button @click='handleClick'>切換</button> </div> <script> Vue.component('child',{ template:'<div>child</div>' }) Vue.component('child-one',{ template:'<div>child-one</div>' }) var vm = new Vue({ el:'#app', data:{ show:true }, methods:{ handleClick:function(){ this.show = !this.show; } } }) </script>
這個(gè)就是多個(gè)組件的過(guò)渡,采用的是上面的方式,替換子組件,那么我們換一種方式,用動(dòng)態(tài)組件
<style> .v-enter, .v-leave-to { opacity: 0; } .v-enter-acitve, .v-leave-active { transition: opacity 1s; } </style> <div id='app'> <transition mode='out-in'> <component :is='type'></component> </transition> <button @click='handleClick'>切換</button> </div> <script> Vue.component('child',{ template:'<div>child</div>' }) Vue.component('child-one',{ template:'<div>child-one</div>' }) var vm = new Vue({ el:'#app', data:{ type:'child' }, methods:{ handleClick:function(){ this.type = (this.type === 'child' ? 'child-one' : 'child') } } }) </script>
這樣也實(shí)現(xiàn)了多個(gè)組件的過(guò)渡效果。
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。