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'm trying to achieve an effect like the one on this page (click the submit button).

http://www.thewildtimes.com

The modal drops down from the top of the page. I think it's a jQuery easing effect, but I am a little baffled by all the options.

How can I do this?

share|improve this question

1 Answer

up vote 1 down vote accepted

The easing they're using is called easeOutBack, it really just boils down to this:

.animate({
   left  : ( ($(document).width() - this.options.BoxStyles.width) / 2),
   top   : ( $(document).scrollTop() + ($(window).height() - this.Box.outerHeight()) / 2 )
 }, {
    duration  : this.options.moveDuration,
    easing    : 'easeOutBack'
 });

Here's their effect packed up in a stand-alone demo to show it a bit better.

share|improve this answer
I'm pretty sure its one of these easing functions gsgd.co.uk/sandbox/jquery/easing – Yi Jiang Aug 15 '10 at 15:45

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.