伙计们。 基本上是类切换。当模式打开时,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');
});
谢谢