摘要:
自定义过渡的类名 点击打开视频讲解更加详细 我们可以通过以下 attribute 来自定义过渡类名: enter-class enter-active-class enter-to-class (2.1.8+) leave-class leave-active-class leave-to-clas 阅读全文
摘要:
CSS动画 点击打开视频讲解更加详细 CSS 动画用法同 CSS 过渡,区别是在动画中 v-enter 类名在节点插入 DOM 后不会立即删除,而是在 animationend 事件触发时删除。 完整案例: <template> <div id="app"> <div id="example-2"> 阅读全文
摘要:
CSS过渡 点击打开视频讲解更加详细 常用的过渡都是使用 CSS 过渡。 完整例子: <template> <div id="app"> <div id="example-1"> <button @click="show = !show"> Toggle render </button> <tran 阅读全文