【发布时间】:2019-02-22 02:13:37
【问题描述】:
我是 bootstrap-vue 和 vue 的新手。 我正在尝试使用Animate.css 创建具有一些动画效果的 b 模态。我指的是Custom-Transition-Classes。
我的代码是这样的:
<transition name="modal1" enter-active-class="animated slideInLeft" leave-
active-class="animated slideOutLeft">
<b-modal ref="saveModal" transition id="modal1" title="Save"
@ok="handleOk" @cancel="handleCancel">
<p class="my-4">Are you sure, you want to save?.</p>
</b-modal>
</transition>
【问题讨论】:
-
问题到底是什么?
-
抱歉问题不完整,我只是想创建动画效果bootstrap-vue modal
-
bootstrap vue 模态已经有一个打开动画(从顶部飞入并淡入)。在添加自己的动画之前,您是否尝试过先禁用
no-fade的那些? bootstrap-vue.js.org/docs/components/modal
标签: css typescript vue.js bootstrap-vue