BS4:在关闭动画时更改模态

时间:2018-07-24 11:51:52

标签: jquery bootstrap-4

伙计们。 基本上是类切换。当模式打开时,jQuery切换类,反之亦然。当我查看检查器时,它会更改类,但是模态会立即关闭,而不会产生生动的动画。我正在使用animate.css

这是代码:

$('#tambahModal').on('show.bs.modal', function (e) {
    $('#tambahModal .modal-dialog').removeClass('modal-dialog animated fadeOut').addClass('modal-dialog animated bounceIn');
});

$('#tambahModal').on('hide.bs.modal', function (e) {
    $('#tambahModal .modal-dialog').removeClass('modal-dialog animated bounceIn').addClass('modal-dialog animated fadeOut');
});

谢谢

0 个答案:

没有答案