2012-02-27 00:49:51 +00:00
|
|
|
/*!
|
2008-09-04 22:03:30 +00:00
|
|
|
* jQuery UI Effects Shake @VERSION
|
2012-07-04 13:08:08 +00:00
|
|
|
* http://jqueryui.com
|
2008-06-06 20:08:52 +00:00
|
|
|
*
|
2014-12-21 18:27:43 +00:00
|
|
|
* Copyright jQuery Foundation and other contributors
|
2012-08-09 14:13:24 +00:00
|
|
|
* Released under the MIT license.
|
2010-07-09 13:01:04 +00:00
|
|
|
* http://jquery.org/license
|
2008-06-06 20:08:52 +00:00
|
|
|
*/
|
2014-10-30 19:55:08 +00:00
|
|
|
|
|
|
|
//>>label: Shake Effect
|
|
|
|
//>>group: Effects
|
|
|
|
//>>description: Shakes an element horizontally or vertically n times.
|
|
|
|
//>>docs: http://api.jqueryui.com/shake-effect/
|
|
|
|
//>>demos: http://jqueryui.com/effect/
|
|
|
|
|
2015-03-18 14:39:12 +00:00
|
|
|
( function( factory ) {
|
2013-07-12 16:40:48 +00:00
|
|
|
if ( typeof define === "function" && define.amd ) {
|
2008-06-04 02:34:33 +00:00
|
|
|
|
2013-07-12 16:40:48 +00:00
|
|
|
// AMD. Register as an anonymous module.
|
2015-03-18 14:39:12 +00:00
|
|
|
define( [
|
2013-07-12 16:40:48 +00:00
|
|
|
"jquery",
|
2013-12-02 18:36:12 +00:00
|
|
|
"./effect"
|
2013-07-12 16:40:48 +00:00
|
|
|
], factory );
|
|
|
|
} else {
|
|
|
|
|
|
|
|
// Browser globals
|
|
|
|
factory( jQuery );
|
|
|
|
}
|
2015-03-18 14:39:12 +00:00
|
|
|
}( function( $ ) {
|
2013-07-12 16:40:48 +00:00
|
|
|
|
2012-12-26 13:35:42 +00:00
|
|
|
return $.effects.define( "shake", function( options, done ) {
|
2008-06-06 19:47:31 +00:00
|
|
|
|
2012-12-26 13:35:42 +00:00
|
|
|
var i = 1,
|
|
|
|
element = $( this ),
|
|
|
|
direction = options.direction || "left",
|
|
|
|
distance = options.distance || 20,
|
|
|
|
times = options.times || 3,
|
2011-06-21 05:23:52 +00:00
|
|
|
anims = times * 2 + 1,
|
2012-12-26 13:35:42 +00:00
|
|
|
speed = Math.round( options.duration / anims ),
|
|
|
|
ref = ( direction === "up" || direction === "down" ) ? "top" : "left",
|
|
|
|
positiveMotion = ( direction === "up" || direction === "left" ),
|
2011-06-21 05:23:52 +00:00
|
|
|
animation = {},
|
|
|
|
animation1 = {},
|
|
|
|
animation2 = {},
|
2008-06-06 19:47:31 +00:00
|
|
|
|
2012-12-26 13:35:42 +00:00
|
|
|
queuelen = element.queue().length;
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2012-12-26 13:35:42 +00:00
|
|
|
$.effects.createPlaceholder( element );
|
2011-05-01 11:24:22 +00:00
|
|
|
|
2011-06-21 05:23:52 +00:00
|
|
|
// Animation
|
2011-06-21 06:15:42 +00:00
|
|
|
animation[ ref ] = ( positiveMotion ? "-=" : "+=" ) + distance;
|
|
|
|
animation1[ ref ] = ( positiveMotion ? "+=" : "-=" ) + distance * 2;
|
|
|
|
animation2[ ref ] = ( positiveMotion ? "-=" : "+=" ) + distance * 2;
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2011-06-21 05:23:52 +00:00
|
|
|
// Animate
|
2012-12-26 13:35:42 +00:00
|
|
|
element.animate( animation, speed, options.easing );
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2011-06-21 05:23:52 +00:00
|
|
|
// Shakes
|
2012-12-26 13:35:42 +00:00
|
|
|
for ( ; i < times; i++ ) {
|
|
|
|
element.animate( animation1, speed, options.easing ).animate( animation2, speed, options.easing );
|
2012-04-02 19:55:50 +00:00
|
|
|
}
|
2011-03-07 00:34:18 +00:00
|
|
|
|
2012-12-26 13:35:42 +00:00
|
|
|
element
|
|
|
|
.animate( animation1, speed, options.easing )
|
|
|
|
.animate( animation, speed / 2, options.easing )
|
|
|
|
.queue( done );
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2012-12-26 13:35:42 +00:00
|
|
|
$.effects.unshift( element, queuelen, anims + 1 );
|
2015-03-18 14:39:12 +00:00
|
|
|
} );
|
2008-06-04 02:34:33 +00:00
|
|
|
|
2015-03-18 14:39:12 +00:00
|
|
|
} ) );
|