parent
0944d4f659
commit
5c89477295
10 changed files with 226 additions and 1 deletions
@ -0,0 +1,25 @@ |
||||
<template> |
||||
<div> |
||||
<Test/> |
||||
<Test2/> |
||||
<Test3/> |
||||
</div> |
||||
</template> |
||||
|
||||
<script> |
||||
import Test from "./components/Test.vue" |
||||
import Test2 from "./components/Test2.vue" |
||||
import Test3 from "./components/Test3.vue" |
||||
|
||||
export default { |
||||
name: "App", |
||||
components: { |
||||
Test, |
||||
Test2, |
||||
Test3 |
||||
}, |
||||
} |
||||
</script> |
||||
|
||||
<style> |
||||
</style> |
After Width: | Height: | Size: 6.7 KiB |
@ -0,0 +1,57 @@ |
||||
<template> |
||||
<div> |
||||
<button @click="isShow=!isShow">显示/隐藏</button> |
||||
<!-- Vue默认实现动画方式 --> |
||||
<!-- :appear="true" --> |
||||
<transition appear> |
||||
<h1 v-show="isShow" class="come">你好啊!</h1> |
||||
</transition> |
||||
<!-- 自定义名称实现动画 --> |
||||
<transition name="hello"> |
||||
<h1 v-show="isShow" class="come">你好啊!</h1> |
||||
</transition> |
||||
</div> |
||||
</template> |
||||
|
||||
<script> |
||||
export default { |
||||
name: "Test", |
||||
data() { |
||||
return { |
||||
isShow: true |
||||
} |
||||
} |
||||
} |
||||
</script> |
||||
|
||||
<style scoped> |
||||
h1 { |
||||
background-color: orange; |
||||
width: 300px; |
||||
} |
||||
|
||||
/*Vue默认实现动画方式*/ |
||||
.v-enter-active{ |
||||
animation: demo 0.5s linear; |
||||
} |
||||
.v-leave-active{ |
||||
animation: demo 0.5s linear reverse; |
||||
} |
||||
|
||||
/*自定义名称实现动画*/ |
||||
.hello-enter-active{ |
||||
animation: demo 0.5s linear; |
||||
} |
||||
.hello-leave-active{ |
||||
animation: demo 0.5s linear reverse; |
||||
} |
||||
|
||||
@keyframes demo { |
||||
from{ |
||||
transform: translateX(-100%); |
||||
} |
||||
to{ |
||||
transform: translateX(0px); |
||||
} |
||||
} |
||||
</style> |
@ -0,0 +1,41 @@ |
||||
<template> |
||||
<div> |
||||
<button @click="isShow=!isShow">显示/隐藏</button> |
||||
<!-- 自定义名称实现动画 --> |
||||
<transition-group name="hello" appear> |
||||
<h1 v-show="!isShow" class="come" key="1">你好啊!</h1> |
||||
<h1 v-show="isShow" class="come" key="2">哈哈哈!</h1> |
||||
</transition-group> |
||||
</div> |
||||
</template> |
||||
|
||||
<script> |
||||
export default { |
||||
name: "Test", |
||||
data() { |
||||
return { |
||||
isShow: true |
||||
} |
||||
} |
||||
} |
||||
</script> |
||||
|
||||
<style scoped> |
||||
h1 { |
||||
background-color: orange; |
||||
width: 300px; |
||||
} |
||||
|
||||
/*过度动画进入的起点和离开的终点*/ |
||||
.hello-enter,.hello-leave-to{ |
||||
transform: translateX(-100%); |
||||
} |
||||
/*过度动画进入的终点和离开的起点*/ |
||||
.hello-enter-to, .hello-leave{ |
||||
transform: translateX(0); |
||||
} |
||||
/*动画效果*/ |
||||
.hello-enter-active, .hello-leave-active { |
||||
transition: 0.5s linear; |
||||
} |
||||
</style> |
@ -0,0 +1,34 @@ |
||||
<template> |
||||
<div> |
||||
<button @click="isShow=!isShow">显示/隐藏</button> |
||||
<!-- 自定义名称实现动画 --> |
||||
<transition-group |
||||
appear |
||||
name="animate__animated animate__bounce" |
||||
enter-active-class="animate__swing" |
||||
leave-active-class="animate__backOutUp" |
||||
> |
||||
<h1 v-show="!isShow" class="come" key="1">你好啊!</h1> |
||||
<h1 v-show="isShow" class="come" key="2">哈哈哈!</h1> |
||||
</transition-group> |
||||
</div> |
||||
</template> |
||||
|
||||
<script> |
||||
import 'animate.css' |
||||
export default { |
||||
name: "Test", |
||||
data() { |
||||
return { |
||||
isShow: true |
||||
} |
||||
} |
||||
} |
||||
</script> |
||||
|
||||
<style scoped> |
||||
h1 { |
||||
background-color: orange; |
||||
width: 300px; |
||||
} |
||||
</style> |
@ -0,0 +1,19 @@ |
||||
// 引入Vue
|
||||
import Vue from "vue"; |
||||
// 引入App
|
||||
import App from "./App"; |
||||
|
||||
// 设置Vue
|
||||
Vue.config.productionTip = false |
||||
|
||||
|
||||
// 实例化Vue
|
||||
new Vue({ |
||||
components: { |
||||
App |
||||
}, |
||||
render: h => h(App), |
||||
beforeCreate() { |
||||
Vue.prototype.$bus = this // 安装全局事件总线
|
||||
} |
||||
}).$mount('#app') |
@ -0,0 +1,34 @@ |
||||
<template> |
||||
<div> |
||||
<button @click="isShow=!isShow">显示/隐藏</button> |
||||
<!-- 自定义名称实现动画 --> |
||||
<transition-group |
||||
appear |
||||
name="animate__animated animate__bounce" |
||||
enter-active-class="animate__swing" |
||||
leave-active-class="animate__backOutUp" |
||||
> |
||||
<h1 v-show="!isShow" class="come" key="1">你好啊!</h1> |
||||
<h1 v-show="isShow" class="come" key="2">哈哈哈!</h1> |
||||
</transition-group> |
||||
</div> |
||||
</template> |
||||
|
||||
<script> |
||||
import 'animate.css' |
||||
export default { |
||||
name: "Test", |
||||
data() { |
||||
return { |
||||
isShow: true |
||||
} |
||||
} |
||||
} |
||||
</script> |
||||
|
||||
<style scoped> |
||||
h1 { |
||||
background-color: orange; |
||||
width: 300px; |
||||
} |
||||
</style> |
Loading…
Reference in new issue