Animate.css & jquery.animateCssPlus.js

マウスオーバーでアニメーション始動

bounce flash pulse rubberBand shake swing tada wobble jello
bounce flash pulse rubberBand shake swing tada wobble jello
$(function() {
    $('.btn').animateCssPlus();
    $('.circle').animateCssPlus();
});

クリックするとアニメーション始動

$('#click').animateCssPlus({
    click:true,
    class:'bounce'
});

ブラウザ領域に入るとアニメーション始動(1回のみ)

$('#scroll').animateCssPlus({
    scroll:true,
    class:'rollIn'
});

記事に戻る