Posts by Douglas Gondim • 21 points
1 post
-
2
votes4
answers34013
viewsA: How to make a loading screen before opening the site
You can create a "div" just below the "body" and perform an "onload". It looks like this: HTML: <body onload="loading()"> <div id="load"></div> .... CSS: #load { position: fixed;…