Home › Forums › JavaScript › How to load website Apple style › Re: How to load website Apple style
March 10, 2012 at 2:41 pm
#98713
Participant
I would use some script timeouts:
setTimeout("functionName();",5000);
The first value would be the function, in which you could use jQuery to fade in. The second value is how long the delay is in milliseconds (seconds times 1000).
Alternatively, you could use CSS3 animation, but the first option is more cross-browser.