/********************************************************************************* copyright(http://www.kaiwo123.com) *********************************************************************************/ ;(function($){ $.fn.dbrotate2d=function(options){ var opt={ rotatespeed:100 //雀傈加档 } $.extend(opt,options); return this.each(function(){ var $this=$(this); var $img=$this.find('img'); var imgwidth=$img.width(); var imgheight=$img.height(); var mover=false; init(); function init(){ setcss(); setmouseevent(); } function setcss(){ $this.css({'width':imgwidth,'height':imgheight}); $img.data({'out':$img.attr('src'),'over':$img.attr('alt')}); } function setmouseevent(){ $this.bind('mouseenter',function(){ mover=true; setanimation(); }).bind('mouseleave',function(){ mover=false; setanimation(); }) } function setanimation(){ if(mover==true){ $img.stop() .animate({'left':imgwidth/2,'width':0},opt.rotatespeed,function(){ $(this).attr({'src':$(this).data('over')}); }) .animate({'left':0,'width':imgwidth},opt.rotatespeed) }else{ $img.stop() .animate({'left':imgwidth/2,'width':0},opt.rotatespeed,function(){ $(this).attr({'src':$(this).data('out')}); }) .animate({'left':0,'width':imgwidth},opt.rotatespeed) } } }) } })(jquery)