Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript How to load website Apple style Re: How to load website Apple style

#98713
cizmic
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.