vote up 1 vote down star

I want to use the jQuery show(700) function, but I do not want any opacity changes. The element in question has a background PNG image with alpha transparency, and the opacity change causes strange black borders around the background image during the animation. How can I omit opactiy animation from the show() function?

flag

78% accept rate

3 Answers

vote up 3 vote down check

Use the animate function and simply vary the width and height. Here's a plugin that will do a reveal.

jQuery.fn.extend( {
    reveal: function() {
       return this.each( function() {
           var $this = $(this);
           $this.animate( { width: "show", height: "show" } );
       });
    }
}
link|flag
Thanks a lot, Tim!! – Josh Stodola Nov 30 at 14:20
vote up 1 vote down

I just found it. Search for the genFx function in jQuery. You see it loops through arrays of styles and returns an object of the right styles, which eventually gets passed to the animate function internally. Just remove "opacity" from the array!

This also might work for you...

.animate({ width: "show" });
link|flag
vote up 0 vote down

jQuery's show slowly (show with a duration) does a slidedown and a fadein simultaneously. If all you want is the slidedown, just use the slidedown.

jQuery("#someElement").slideDown(700);

Not much more to say about that.

link|flag
I think the function name needs to be camelCase. – Jacob Relkin Nov 29 at 22:17
1  
Also, it doesn't just slide-down and fade-in, it also expands the width. – J-P Nov 29 at 22:22
Yeah, camel case, I updated my answer. And I forgot that show(milliseconds) does a fadein, a slidedown and and slide "out". In that case @tvanfosson's answer looks best. – darkporter Nov 29 at 22:33
slideDown only animates the height, I primarily would like to animate the width. My answer is working, and so is tvanfosson's. Thanks for the help. – Josh Stodola Nov 30 at 14:19

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.