首页 > 网站 > WEB开发 > 正文

Jquery闪烁提示特效

2024-04-27 15:01:53
字体:
来源:转载
供稿:网友
样式:.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);

 


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表