1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <template>
- <div>
- <button @click="isShow = !isShow">显示/隐藏</button>
- <transition name="hello" appear>
- <h1 v-show="isShow">你好啊!</h1>
- </transition>
- </div>
- </template>
- <script>
- export default {
- name:'Test',
- data(){
- return{
- isShow:true
- }
- }
- }
- </script>
- <style scoped>
- h1{
- background-color: orange;
- }
- /* .v-enter-active{
- animation: atguigu 1s linear;
- }
- .v-leave-active{
- animation: atguigu 1s linear reverse;
- } */
- .hello-enter-active{
- animation: atguigu 0.5s linear;
- }
- .hello-leave-active{
- animation: atguigu 0.5s linear reverse;
- }
- @keyframes atguigu{
- from{
- transform: translateX(-100%);
- }
- to{
- transform: translateX(0px);
- }
- }
- </style>
|