Changeset 4546
- Timestamp:
- 01/28/08 17:51:36 (10 months ago)
- Files:
-
- 1 modified
-
trunk/fx/fx.bounce.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/fx/fx.bounce.js
r4365 r4546 13 13 var distance = o.options.distance || 20; // Default distance 14 14 var times = o.options.times || 5; // Default # of times 15 var speed = o.options. speed|| 250; // Default speed per bounce15 var speed = o.options.duration || 250; // Default speed per bounce 16 16 17 17 // Adjust … … 40 40 distance = (mode == 'hide') ? distance * 2 : distance / 2; 41 41 }; 42 el.dequeue(); 42 43 if (mode == 'hide') { // Last Bounce 43 44 var animation = {opacity: 0};
