2012-02-27 00:49:51 +00:00
|
|
|
/*!
|
2008-09-04 22:03:30 +00:00
|
|
|
* jQuery UI Effects Bounce @VERSION
|
2012-07-04 13:08:08 +00:00
|
|
|
* http://jqueryui.com
|
2008-06-06 20:08:52 +00:00
|
|
|
*
|
2013-01-10 13:52:20 +00:00
|
|
|
* Copyright 2013 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-11-20 04:10:34 +00:00
|
|
|
*
|
2012-09-26 23:06:20 +00:00
|
|
|
* http://api.jqueryui.com/bounce-effect/
|
2008-06-06 20:08:52 +00:00
|
|
|
*
|
|
|
|
* Depends:
|
2012-06-15 16:47:12 +00:00
|
|
|
* jquery.ui.effect.js
|
2008-06-06 20:08:52 +00:00
|
|
|
*/
|
2010-07-13 13:57:58 +00:00
|
|
|
(function( $, undefined ) {
|
2008-05-23 09:26:18 +00:00
|
|
|
|
2011-06-21 06:11:46 +00:00
|
|
|
$.effects.effect.bounce = function( o, done ) {
|
2012-04-19 01:57:51 +00:00
|
|
|
var el = $( this ),
|
2011-06-21 05:23:52 +00:00
|
|
|
props = [ "position", "top", "bottom", "left", "right", "height", "width" ],
|
|
|
|
|
|
|
|
// defaults:
|
|
|
|
mode = $.effects.setMode( el, o.mode || "effect" ),
|
|
|
|
hide = mode === "hide",
|
|
|
|
show = mode === "show",
|
2012-04-19 01:57:51 +00:00
|
|
|
direction = o.direction || "up",
|
2011-06-21 05:23:52 +00:00
|
|
|
distance = o.distance,
|
|
|
|
times = o.times || 5,
|
|
|
|
|
|
|
|
// number of internal animations
|
|
|
|
anims = times * 2 + ( show || hide ? 1 : 0 ),
|
|
|
|
speed = o.duration / anims,
|
|
|
|
easing = o.easing,
|
|
|
|
|
|
|
|
// utility:
|
|
|
|
ref = ( direction === "up" || direction === "down" ) ? "top" : "left",
|
2012-04-19 01:57:51 +00:00
|
|
|
motion = ( direction === "up" || direction === "left" ),
|
2011-06-21 05:23:52 +00:00
|
|
|
i,
|
|
|
|
upAnim,
|
|
|
|
downAnim,
|
|
|
|
|
|
|
|
// we will need to re-assemble the queue to stack our animations in place
|
|
|
|
queue = el.queue(),
|
|
|
|
queuelen = queue.length;
|
|
|
|
|
2012-04-19 01:57:51 +00:00
|
|
|
// Avoid touching opacity to prevent clearType and PNG issues in IE
|
2011-06-21 05:23:52 +00:00
|
|
|
if ( show || hide ) {
|
|
|
|
props.push( "opacity" );
|
2012-04-19 01:57:51 +00:00
|
|
|
}
|
2011-06-21 05:23:52 +00:00
|
|
|
|
2012-04-19 01:57:51 +00:00
|
|
|
$.effects.save( el, props );
|
|
|
|
el.show();
|
2011-06-21 05:23:52 +00:00
|
|
|
$.effects.createWrapper( el ); // Create Wrapper
|
|
|
|
|
|
|
|
// default distance for the BIGGEST bounce is the outer Distance / 3
|
|
|
|
if ( !distance ) {
|
|
|
|
distance = el[ ref === "top" ? "outerHeight" : "outerWidth" ]() / 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( show ) {
|
|
|
|
downAnim = { opacity: 1 };
|
2011-05-01 08:44:33 +00:00
|
|
|
downAnim[ ref ] = 0;
|
2011-03-07 00:48:14 +00:00
|
|
|
|
2011-06-21 05:23:52 +00:00
|
|
|
// if we are showing, force opacity 0 and set the initial position
|
|
|
|
// then do the "first" animation
|
|
|
|
el.css( "opacity", 0 )
|
2011-06-21 06:15:42 +00:00
|
|
|
.css( ref, motion ? -distance * 2 : distance * 2 )
|
2011-06-21 05:23:52 +00:00
|
|
|
.animate( downAnim, speed, easing );
|
|
|
|
}
|
|
|
|
|
|
|
|
// start at the smallest distance if we are hiding
|
|
|
|
if ( hide ) {
|
|
|
|
distance = distance / Math.pow( 2, times - 1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
downAnim = {};
|
|
|
|
downAnim[ ref ] = 0;
|
|
|
|
// Bounces up/down/left/right then back to 0 -- times * 2 animations happen here
|
|
|
|
for ( i = 0; i < times; i++ ) {
|
|
|
|
upAnim = {};
|
|
|
|
upAnim[ ref ] = ( motion ? "-=" : "+=" ) + distance;
|
|
|
|
|
|
|
|
el.animate( upAnim, speed, easing )
|
|
|
|
.animate( downAnim, speed, easing );
|
|
|
|
|
|
|
|
distance = hide ? distance * 2 : distance / 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Last Bounce when Hiding
|
|
|
|
if ( hide ) {
|
|
|
|
upAnim = { opacity: 0 };
|
|
|
|
upAnim[ ref ] = ( motion ? "-=" : "+=" ) + distance;
|
|
|
|
|
|
|
|
el.animate( upAnim, speed, easing );
|
|
|
|
}
|
2012-04-19 01:57:51 +00:00
|
|
|
|
2011-06-21 06:11:46 +00:00
|
|
|
el.queue(function() {
|
2011-05-01 08:44:33 +00:00
|
|
|
if ( hide ) {
|
2011-06-21 05:23:52 +00:00
|
|
|
el.hide();
|
2011-03-27 11:30:40 +00:00
|
|
|
}
|
2011-06-21 05:23:52 +00:00
|
|
|
$.effects.restore( el, props );
|
|
|
|
$.effects.removeWrapper( el );
|
2011-06-21 06:11:46 +00:00
|
|
|
done();
|
2008-06-06 19:47:31 +00:00
|
|
|
});
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2011-06-21 05:23:52 +00:00
|
|
|
// inject all the animations we just queued to be first in line (after "inprogress")
|
|
|
|
if ( queuelen > 1) {
|
|
|
|
queue.splice.apply( queue,
|
|
|
|
[ 1, 0 ].concat( queue.splice( queuelen, anims + 1 ) ) );
|
|
|
|
}
|
2011-06-21 06:11:46 +00:00
|
|
|
el.dequeue();
|
2011-06-21 05:23:52 +00:00
|
|
|
|
2008-06-06 19:47:31 +00:00
|
|
|
};
|
2008-05-23 09:26:18 +00:00
|
|
|
|
2008-06-06 19:47:31 +00:00
|
|
|
})(jQuery);
|