2014-04-21 15:15 的草稿,很早之前的菜鸟入门时学会的东西,我也忘了是原创还是转载的,毕竟年代久远了。嗯,能帮上忙就好……
需要使用到的知识:
jQuery UI的 Color Animation: http://jqueryui.com/animate/
HTML DOM setInterval()方法: http://www.w3school.com.cn/jsref/met_win_setinterval.asp
blink_id = setInterval(function(){
$(this_on_off).animate({
color: show_color
}, 200);
$(this_on_off).animate({
color: old_color
}, 200);
}, 400);