diff options
author | gnarf <gnarf@gnarf.net> | 2011-03-06 18:48:14 -0600 |
---|---|---|
committer | gnarf <gnarf@gnarf.net> | 2011-03-06 18:48:14 -0600 |
commit | 576cd0b92b7469a1f8836dcd7c942083a4d1326d (patch) | |
tree | 095fd62bb88fb62ee553b3a11a07e657770ec4bb /ui/jquery.effects.bounce.js | |
parent | 9c771b8f8b49a95da2b2234fdc0bd19c26a91038 (diff) | |
download | jquery-ui-576cd0b92b7469a1f8836dcd7c942083a4d1326d.tar.gz jquery-ui-576cd0b92b7469a1f8836dcd7c942083a4d1326d.zip |
effects.*: style guidance
Diffstat (limited to 'ui/jquery.effects.bounce.js')
-rw-r--r-- | ui/jquery.effects.bounce.js | 80 |
1 files changed, 48 insertions, 32 deletions
diff --git a/ui/jquery.effects.bounce.js b/ui/jquery.effects.bounce.js index dde99481b..d5b43492e 100644 --- a/ui/jquery.effects.bounce.js +++ b/ui/jquery.effects.bounce.js @@ -30,54 +30,70 @@ $.effects.bounce = function(o) { // utility: ref = ( direction == 'up' || direction == 'down' ) ? 'top' : 'left', motion = ( direction == 'up' || direction == 'left' ), // true is positive - distance = o.distance || false; + i, animation, animation1, animation2; // Avoid touching opacity to prevent clearType and PNG issues in IE - if ( rshowhide.test(mode) ) props.push('opacity'); + if ( rshowhide.test( mode ) ) { + props.push( 'opacity' ); + } - $.effects.save(el, props); el.show(); // Save & Show - $.effects.createWrapper(el); // Create Wrapper + $.effects.save( el, props ); + el.show(); + $.effects.createWrapper( el ); // Create Wrapper if ( !distance ) { - distance = el[ref == 'top' ? 'outerHeight' : 'outerWidth' ]( { margin:true } ) / 3; + distance = el[ ref == 'top' ? 'outerHeight' : 'outerWidth' ]({ margin:true }) / 3; } - if (mode == 'show') el.css('opacity', 0).css(ref, motion ? -distance : distance ); // Shift - if (mode == 'hide') distance = distance / (times * 2); - if (mode != 'hide') times--; + if ( mode == 'show' ) el.css( 'opacity', 0 ).css( ref, motion ? -distance : distance ); // Shift + if ( mode == 'hide' ) distance = distance / (times * 2); + if ( mode != 'hide' ) times--; // Animate - if (mode == 'show') { // Show Bounce - var animation = { opacity: 1 }; - animation[ref] = (motion ? '+=' : '-=') + distance; + if ( mode == 'show' ) { + animation = { + opacity: 1 + }; + animation[ ref ] = ( motion ? '+=' : '-=' ) + distance; el.animate( animation, speed / 2, o.easing); distance = distance / 2; times--; }; - for (var i = 0; i < times; i++) { // Bounces - var animation1 = {}, animation2 = {}; - animation1[ref] = (motion ? '-=' : '+=') + distance; - animation2[ref] = (motion ? '+=' : '-=') + distance; + + // Bounces + for (i = 0; i < times; i++) { + animation1 = {}; + animation2 = {}; + animation1[ ref ] = ( motion ? '-=' : '+=' ) + distance; + animation2[ ref ] = ( motion ? '+=' : '-=' ) + distance; el.animate( animation1, speed / 2, o.easing ).animate( animation2, speed / 2, o.easing ); - distance = (mode == 'hide') ? distance * 2 : distance / 2; - }; - if (mode == 'hide') { // Last Bounce - var animation = { opacity: 0 }; - animation[ref] = (motion ? '-=' : '+=') + distance; + distance = ( mode == 'hide' ) ? distance * 2 : distance / 2; + } + + // Last Bounce + if ( mode == 'hide' ) { + animation = { + opacity: 0 + }; + animation[ ref ] = ( motion ? '-=' : '+=' ) + distance; el.animate( animation, speed / 2, o.easing, function(){ - el.hide(); // Hide - $.effects.restore( el, props ); $.effects.removeWrapper( el ); // Restore - if ( o.complete ) o.complete.apply( this, arguments ); // Callback + el.hide(); + $.effects.restore( el, props ); + $.effects.removeWrapper( el ); + $.isFunction( o.complete ) && o.complete.apply( this, arguments ); }); } else { - var animation1 = {}, animation2 = {}; - animation1[ref] = (motion ? '-=' : '+=') + distance; - animation2[ref] = (motion ? '+=' : '-=') + distance; - el.animate(animation1, speed / 2, o.easing).animate(animation2, speed / 2, o.easing, function(){ - $.effects.restore(el, props); $.effects.removeWrapper(el); // Restore - if(o.complete) o.complete.apply(this, arguments); // Callback - }); - }; - el.queue('fx', function(next) { next(); }); + animation1 = {}; + animation2 = {}; + animation1[ ref ] = ( motion ? '-=' : '+=' ) + distance; + animation2[ ref ] = ( motion ? '+=' : '-=' ) + distance; + el + .animate( animation1, speed / 2, o.easing ) + .animate( animation2, speed / 2, o.easing, function() { + $.effects.restore( el, props ); + $.effects.removeWrapper( el ); + $.isFunction( o.complete ) && o.complete.apply( this, arguments ); + }); + } el.dequeue(); }); |