使用过度效果实现多个元素动画

new_branch1
roger 2 years ago
parent 9d586acf04
commit 0944d4f659
  1. 7
      20_脚手架/vue_code/src/components/Test2.vue

@ -2,9 +2,10 @@
<div> <div>
<button @click="isShow=!isShow">显示/隐藏</button> <button @click="isShow=!isShow">显示/隐藏</button>
<!-- 自定义名称实现动画 --> <!-- 自定义名称实现动画 -->
<transition name="hello"> <transition-group name="hello" appear>
<h1 v-show="isShow" class="come">你好啊</h1> <h1 v-show="!isShow" class="come" key="1">你好啊</h1>
</transition> <h1 v-show="isShow" class="come" key="2">哈哈哈</h1>
</transition-group>
</div> </div>
</template> </template>

Loading…
Cancel
Save