文章出處

樣式:.red{ border:1px solid #d00; background:#ffe9e8; color:#d00;}

 

function shake(ele,cls,times){           
        var i = 0,t= false ,o =ele.attr("class")+" ",c ="",times=times||2;

        if(t) return;

        t= setInterval(function(){

            i++;

            c = i%2 ? o+cls : o;

            ele.attr("class",c);

            if(i==2*times){

            	clearInterval(t);

            	ele.removeClass(cls);

            }

        },200);

     };

  調用:shake($("#ID"),"red",3);

 


文章列表


不含病毒。www.avast.com
arrow
arrow
    全站熱搜
    創作者介紹
    創作者 大師兄 的頭像
    大師兄

    IT工程師數位筆記本

    大師兄 發表在 痞客邦 留言(0) 人氣()