您可以找到引导动画here。我想在完成后删除动画。在网站上,你可以找到一个触发器,它可以帮助你。 问题是,当我单击按钮时,类会立即被删除。
<button class="btn btn-primary" onclick="foo(this)">Press here</button>
<script>
function foo(element){
$(element).addClass("animated shake");
$(element).on('webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend', $(element).removeClass("animated shake"));
}
</script>
答案 0 :(得分:1)
只需在动画期间添加超时,等待动画完成:
function foo(element){
$(element).addClass("animated shake");
var duration = $(element).css("animation-duration");
setTimeout(function() {
$(element).removeClass("animated shake");
}, duration);
}