image name for sequence loading

liunx

Guest
I have created a number of image intensive web pages, a necessity since it is a virtual tour. Each page contains fifteen or more images. Is there a system for naming or numbering images so that they load in sequence from top to bottom rather than loading somewhat randomly?<!--content-->The browser generally requests images from the server as it encounters them in your HTML. It has nothing to do with their name. It may be that the requests are not being fulfilled in the order that they are received, which is perfectly legitimate in TCP/IP protocol - the only thing guaranteed is that the request will be honored.<br />
<br />
If you are bothered by this, you can cover up the page using a layer that says "Please wait". There is an example script available at <!-- m --><a class="postlink" href="http://javascript.internet.com/page-details/preload-page.html">http://javascript.internet.com/page-det ... -page.html</a><!-- m --> that will do that.<!--content-->
 
Back
Top