Tell me how to make the site first loaded and then displayed on the screen. Without flash, on JS. That's about _http: //playdulla.com/ anyway, just with a round gif file when you download the site

  • question and what for if it is not Flash? The preload is only needed for flash drives, when the htm site starts to load and show the preload - I close it and never return to it until this garbage is removed. - Artem
  • To amuse visitors))) though not for long XD) ZY It amazes me how to do so on this site? PPTs ... Well, I’ve done it somewhere, dig into their health scripts ... - Palmervan

2 answers 2

For example:

<script type="text/javascript"> function showSite() { document.getElementById('wrapper').style.height='100%'; document.getElementById('wrapper').style.overflow='show'; document.getElementById('loading').style.display='none'; } </script> <body onload="showSite()"> <div id="loading" style="text-align: center"> загрузка... </div> <div id="wrapper" style="height:1px;overflow: hidden;"> <!-- сайт --> </div> </body> 

    Specifically, in your example, this is used - QueryLoader , as seen in the source code.

    • > what can be seen in the source code of what the vehicle should have done before asking the question) - Palmervan