JQuery: effect

$(document).ready(function(){
    $('div').click(function(){
        $(this).effect('explode');   //散开
        $(this).effect('bounce', {times:3}, 500); //抖三下
        $(this).effect('slide');    //划过
    });
});
原文地址:https://www.cnblogs.com/fanszone/p/3536138.html