【发布时间】:2019-11-25 12:24:11
【问题描述】:
我是 Vue 的初学者,我正在尝试通过 Vue 制作轮播。
我有代码:https://jsfiddle.net/z3m76w5r/4/(示例)
<style>
.switch-enter-active,
.switch-leave-active {
transition: all .5s ease-in-out;
}
.switch-enter {
left: 100%;
}
.switch-leave,
.switch-leave-to {
left: -100%;
}
</style>
<div id="banner">
<transition name="switch">
<banner class="content" v-bind:slide="currentSlide"></banner>
</transition>
<div>
我想让我的轮播动画。但是我的 transition-vue 不起作用,尽管我查看了文档和手册。
【问题讨论】:
标签: vue.js animation vuejs2 carousel transition