vue中的動畫主要依靠transition
這個控制元件,關於transition這個api可以上官網檢視vue中的transition
vue中使用css動畫
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Vue中CSS動畫原理</title>
<meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1.0, maximum-scale=1.0">
<style>
.fade-enter,
.fade-leave-to {
opacity: 0;
}
.fade-enter-active,
.fade-leave-active {
transition: opacity 1s;
}
</style>
</head>
<body>
<div id="container">
<transition name="fade">
<component :is="tabName"></component>
</transition>
<button @click="switchNav">switch</button>
</div>
</body>
<script src="https://cdn.bootcss.com/vue/2.5.0/vue.js"></script>
<script>
Vue.component('child-one', {
template: `<div v-once>child-one</div>`
});
Vue.component('child-two', {
template: `<div v-once>child-two</div>`
});
var vm = new Vue({
el: "#container",
data: function () {
return {
tabName: 'child-one'
}
},
methods: {
switchNav: function () {
this.tabName = this.tabName == 'child-one' ? 'child-two' : 'child-one'
}
}
});
</script>
</html>
複製程式碼
vue中 animate.css 動畫
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>在Vue中使用 animate.css 庫</title>
<meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1.0, maximum-scale=1.0">
<link rel="stylesheet" href="https://cdn.bootcss.com/animate.css/3.5.2/animate.min.css">
</head>
<body>
<div id="container">
<transition enter-active-class="animated fadeIn"
leave-active-class="animated shake">
<div v-show="show">animation</div>
</transition>
<button @click="switchNav">toggle</button>
</div>
</body>
<script src="https://cdn.bootcss.com/vue/2.5.0/vue.js"></script>
<script>
var vm = new Vue({
el: "#container",
data: function () {
return {
show: true
}
},
methods: {
switchNav: function () {
this.show = !this.show;
}
}
});
</script>
</html>
複製程式碼
在vue中同時使用過渡和動畫
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>在Vue中同時使用過渡和動畫</title>
<meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1.0, maximum-scale=1.0">
<link rel="stylesheet" href="https://cdn.bootcss.com/animate.css/3.5.2/animate.min.css">
<style>
.fade-enter,
.fade-leave-to {
opacity: 0;
}
.fade-enter-active,
.fade-leave-active {
transition: opacity 2s;
}
</style>
</head>
<body>
<div id="container">
<transition name="fade"
appear
:duration="{enter: 1000, leave: 3000}"
enter-active-class="animated jello fade-enter-active"
leave-active-class="animated tada fade-leave-active"
appear-active-class="animated jello fade-enter-active">
<div v-show="show">animation</div>
</transition>
<button @click="switchNav">toggle</button>
</div>
</body>
<script src="https://cdn.bootcss.com/vue/2.5.0/vue.js"></script>
<script>
var vm = new Vue({
el: "#container",
data: function () {
return {
show: true
}
},
methods: {
switchNav: function () {
this.show = !this.show;
}
}
});
</script>
</html>
複製程式碼
Vue中的 Js 動畫與 Velocity.js 的結合
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Vue中的 Js 動畫與 Velocity.js 的結合</title>
<meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1.0, maximum-scale=1.0">
<link rel="stylesheet" href="https://cdn.bootcss.com/animate.css/3.5.2/animate.min.css">
</head>
<body>
<div id="container">
<transition @before-enter="handleBeforeEnter"
@enter="handleEnter"
@after-enter="handleAfterEnter">
<div v-show="show">animation</div>
</transition>
<button @click="switchNav">toggle</button>
</div>
</body>
<script src="https://cdn.bootcss.com/vue/2.5.0/vue.js"></script>
<script src="https://cdn.bootcss.com/velocity/2.0.2/velocity.js"></script>
<script>
var vm = new Vue({
el: "#container",
data: function () {
return {
show: true
}
},
methods: {
switchNav: function () {
this.show = !this.show;
},
handleBeforeEnter: function(el) {
el.style.opacity = 0;
},
handleEnter: function(el, done) {
Velocity(el, {opacity: 1}, {duration: 1000, complete: done});
},
handleAfterEnter: function(el) {
console.log('動畫結束');
}
}
});
</script>
</html>
複製程式碼
Vue中多個元元件的過渡
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Vue中多個元元件的過渡</title>
<meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1.0, maximum-scale=1.0">
<style>
.v-enter,
.v-leave-to {
opacity: 0;
}
.v-enter-active,
.v-leave-active {
transition: opacity 1s;
}
</style>
</head>
<body>
<div id="container">
<transition mode="out-in">
<component :is="type"></component>
</transition>
<button @click="switchNav">toggle</button>
</div>
</body>
<script src="https://cdn.bootcss.com/vue/2.5.0/vue.js"></script>
<script>
Vue.component('child-one', {
template: '<div>child-one</div>'
})
Vue.component('child-two', {
template: '<div>child-two</div>'
})
var vm = new Vue({
el: "#container",
data: function () {
return {
type: 'child-one'
}
},
methods: {
switchNav: function () {
this.type = this.type == 'child-one' ? 'child-two' : 'child-one';
}
}
});
</script>
</html>
複製程式碼
封裝vue中的動畫元件
<html>
<head>
<meta charset="UTF-8">
<title>封裝vue中的動畫元件</title>
<meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1.0, maximum-scale=1.0">
</head>
<body>
<div id="container">
<fade :show="show">
<div>hello transition</div>
</fade>
<button @click="handleClick">toggle</button>
</div>
</body>
<script src="https://cdn.bootcss.com/vue/2.5.0/vue.js"></script>
<script>
Vue.component('fade', {
props: ['show'],
template: `
<transition @before-enter="handleBeforeEnter"
@enter="handleEnter">
<slot v-if="show"></slot>
</transition>
`,
methods: {
handleBeforeEnter: function(el) {
el.style.opacity = 0;
},
handleEnter: function(el, done) {
setTimeout(() => {
el.style.opacity = 1;
done();
}, 1000);
}
}
})
var vm = new Vue({
el: "#container",
data: function () {
return {
show: true
}
},
methods: {
handleClick: function () {
this.show = !this.show;
}
}
});
</script>
</html>
複製程式碼