admin管理员组文章数量:1349231
I want to dynamically change what kind of animation happens depending on a user's action. So for example, when the first button is clicked and the leave animation is called the "hello" element should use the bounceOutRight animation. However, if the user clicks the second button the "hello" element should use the bounceOutLeft animation. This example es from the vue.js documentation and I am trying to expand on it. As in the vue example it uses the animate.css library.
I tried using v-bind:leave-active-class="animated bounceOutRight" but that threw an error as an invalid expression.
<button @click="show = !show">
Toggle Bounce Right
</button>
<button @click="show = !show">
Toggle Bounce Left
</button>
<transition
name="custom-classes-transition"
enter-active-class="animated tada"
leave-active-class="animated bounceOutRight"
>
<p v-if="show">hello</p>
</transition>
I want to dynamically change what kind of animation happens depending on a user's action. So for example, when the first button is clicked and the leave animation is called the "hello" element should use the bounceOutRight animation. However, if the user clicks the second button the "hello" element should use the bounceOutLeft animation. This example es from the vue.js documentation and I am trying to expand on it. As in the vue example it uses the animate.css library.
I tried using v-bind:leave-active-class="animated bounceOutRight" but that threw an error as an invalid expression.
<button @click="show = !show">
Toggle Bounce Right
</button>
<button @click="show = !show">
Toggle Bounce Left
</button>
<transition
name="custom-classes-transition"
enter-active-class="animated tada"
leave-active-class="animated bounceOutRight"
>
<p v-if="show">hello</p>
</transition>
Share
Improve this question
edited Jul 13, 2022 at 22:57
tony19
139k23 gold badges277 silver badges347 bronze badges
asked Dec 18, 2016 at 16:16
dpstdpst
1,2831 gold badge15 silver badges23 bronze badges
1 Answer
Reset to default 9You can use v-bind for this purpose, you can have name of transition as vue data variable and following will make sure it is dynamic:
<transition
v-bind:name="className"
v-bind:enter-active-class="enterClassName"
v-bind:leave-active-class="leaveClassName"
>
or in short
<transition
:name="className"
:enter-active-class="enterClassName"
:leave-active-class="leaveClassName"
>
本文标签: javascriptHow to dynamically change Vuejs transitionStack Overflow
版权声明:本文标题:javascript - How to dynamically change Vue.js transition - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743852315a2550234.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论