1.用jQuery的animate方法写小图和大图的切换手风琴效果,小图片会有抖动,怎么解决?
2.
var $title2Con=$('.title2-con li'), timer=null; $title2Con.hover(function(){ var _this=$(this); clearTimeout(timer); timer=setTimeout(function(){ _this.stop(true).animate({width:'601px'},500).find('b').fadeOut(400).parent().siblings().stop(true).animate({width:'140px'},500).find('b').fadeIn(400); },200); });
3.
ringa_lee