Reputation: 13
How can I mimic Apple.com's intro animation first used with the updated MacBook Air & Currently with the iPad 2?
Upvotes: 1
Views: 792
Reputation: 27638
I would do the following:
display: hidden;
(CSS) to every visible element on the pagefadeIn()
to fade in the elementssetTimeout()
to time these fadeIn()
's to get the desired effectSomething like this: http://jsfiddle.net/wcqzd/ - it needs some work but it should give you a good base.
Upvotes: 4