动画效果使用方法1.template中写这个123<transition name="hello" appear> <h1 v-show="isShow" >你好啊!</h1> </transition> 2.style中写动画的各种效果包含开始前中后三个部分 1234567891011121314@keyframes atguigu { from{ transform:translateX(-100px) }to { transform:translateX(0) } } .hello-enter-active { animation: atguigu 1s; } .hello-leave-active{ animation: atguigu 1s reverse; }