diff options
author | Aaron Eisenberger <aaronchi@gmail.com> | 2008-06-24 13:44:28 +0000 |
---|---|---|
committer | Aaron Eisenberger <aaronchi@gmail.com> | 2008-06-24 13:44:28 +0000 |
commit | ad2a61daaf7f103872c5c4831c99734269d10d83 (patch) | |
tree | a9ebaa2b6d062c7063fe929e5dd3ed88a8f338d5 /ui/effects.clip.js | |
parent | d204a0232052802918ec8942b26f12f2f3601ece (diff) | |
download | jquery-ui-ad2a61daaf7f103872c5c4831c99734269d10d83.tar.gz jquery-ui-ad2a61daaf7f103872c5c4831c99734269d10d83.zip |
fix for clip to better work with images (animates wrapper for images only)
Diffstat (limited to 'ui/effects.clip.js')
-rw-r--r-- | ui/effects.clip.js | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/ui/effects.clip.js b/ui/effects.clip.js index e45d79918..813289686 100644 --- a/ui/effects.clip.js +++ b/ui/effects.clip.js @@ -17,7 +17,7 @@ $.effects.clip = function(o) { return this.queue(function() { // Create element - var el = $(this), props = ['position','top','left']; + var el = $(this), props = ['position','top','left','height','width']; // Set options var mode = $.effects.setMode(el, o.options.mode || 'hide'); // Set Mode @@ -26,12 +26,13 @@ $.effects.clip = function(o) { // Adjust $.effects.save(el, props); el.show(); // Save & Show var wrapper = $.effects.createWrapper(el).css({overflow:'hidden'}); // Create Wrapper + var animate = el[0].tagName == 'IMG' ? wrapper : el; var ref = { size: (direction == 'vertical') ? 'height' : 'width', position: (direction == 'vertical') ? 'top' : 'left' }; var distance = (direction == 'vertical') ? wrapper.height() : wrapper.width(); - if(mode == 'show') { wrapper.css(ref.size, 0); wrapper.css(ref.position, distance / 2); } // Shift + if(mode == 'show') { animate.css(ref.size, 0); animate.css(ref.position, distance / 2); } // Shift // Animation var animation = {}; @@ -39,7 +40,7 @@ $.effects.clip = function(o) { animation[ref.position] = mode == 'show' ? 0 : distance / 2; // Animate - wrapper.animate(animation, { queue: false, duration: o.duration, easing: o.options.easing, complete: function() { + animate.animate(animation, { queue: false, duration: o.duration, easing: o.options.easing, complete: function() { if(mode == 'hide') el.hide(); // Hide $.effects.restore(el, props); $.effects.removeWrapper(el); // Restore if(o.callback) o.callback.apply(el[0], arguments); // Callback |