Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 1 | /* |
| 2 | jQuery Wiggle |
| 3 | Author: WonderGroup, Jordan Thomas |
| 4 | URL: http://labs.wondergroup.com/demos/mini-ui/index.html |
| 5 | License: MIT (http://en.wikipedia.org/wiki/MIT_License) |
| 6 | */ |
| 7 | jQuery.fn.wiggle=function(o){var d={speed:50,wiggles:3,travel:5,callback:null};var o=jQuery.extend(d,o);return this.each(function(){var cache=this;var wrap=jQuery(this).wrap('<div class="wiggle-wrap"></div>').css("position","relative");var calls=0;for(i=1;i<=o.wiggles;i++){jQuery(this).animate({left:"-="+o.travel},o.speed).animate({left:"+="+o.travel*2},o.speed*2).animate({left:"-="+o.travel},o.speed,function(){calls++;if(jQuery(cache).parent().hasClass('wiggle-wrap')){jQuery(cache).parent().replaceWith(cache);} |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 8 | if(calls==o.wiggles&&jQuery.isFunction(o.callback)){o.callback();}});}});}; |