Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've found that there seems to be a problem using css transitions properties when they are initially set to auto. To circumvent this I've set the initial css properties using jquery, before adding the css transition property.

The issue I'm having is that when I define the transitional properties immediately after setting the initial css properties, I get weird behaviour. EXAMPLE: http://jsfiddle.net/3zUDc/10/

However, when I delay setting the transitional properties by a few milliseconds, I get the intended behaviour, but the code seems uglier. EXAMPLE: http://jsfiddle.net/3zUDc/9/

Is there a way to accomplish the behaviour seen in the second example without putting the css transitions and destination parameters in the setTimeout block?

Thanks for any help!

share|improve this question
+1 Nice examples...Keen to know the answers... – Wazzzy Jun 27 '12 at 15:36
1  
@Tuck have you tried $('a:first').show().css( ? – Alex Ball Jun 27 '12 at 15:46
Ya .show() works... @AlexBall – Wazzzy Jun 27 '12 at 15:51
@Tuck, perfect, Wassim has post the answre ;-) – Alex Ball Jun 27 '12 at 15:56
Awesome! That works great. Can you explain why it works? I don't really understand the theory behind it. – Tuck Jun 27 '12 at 16:00

1 Answer

up vote 1 down vote accepted

.show() is an answer...

$('a:first').click(function(){
    $(this).css({'width': $(this).width() / $(this).parent().width() * 100 + '%', 'height': $(this).height()});
    $('a:first').show().css({
        '-webkit-transition': 'all 3s', 
        '-moz-transition': 'all 3s', 
        width: '100%', 
        height: '100px', 
        backgroundColor: 'black'
    });
});

Here is the jsfiddle demo

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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