Animate.css & jquery

jQueryでクラスを追加・削除してアニメーション

#test
クリックしてください
$("#test").on({
    "click":function(){
        $(this).addClass("animated swing");
    },
    "webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend":function(){
        $(this).removeClass("animated swing");
    }
});

記事に戻る