Please support our JavaScript / DHTML / AJAX advertiser: PostgreSQL or MySQL? Compare and contrast the two most popular open source databases
Reply

Join Date: Apr 2008
Posts: 496
Reputation: veledrom is an unknown quantity at this point 
Solved Threads: 0
veledrom veledrom is offline Offline
Posting Pro in Training

Loading bar

 
0
  #1
Apr 1st, 2009
Hi,

I have a loading bar gif to be displayed initially, until main image (1MB) is loaded in my web page. How can i do it?

Thanks
Reply With Quote Quick reply to this message  
Join Date: Apr 2007
Posts: 437
Reputation: Fungus1487 is on a distinguished road 
Solved Threads: 50
Fungus1487's Avatar
Fungus1487 Fungus1487 is offline Offline
Posting Pro in Training

Re: Loading bar

 
0
  #2
Apr 4th, 2009
just add a function to the onload method of the document this will fire when the page has finished loading all external content. You can use this then to hide your gif after the page is done.

  1. <html>
  2. <head>
  3. <script language="javascript" type="text/javascript">
  4. function hideLoading() {
  5. document.getElementById('loadingMessage').style.display = 'none';
  6. }
  7. </script>
  8. </head>
  9. <body onload="hideLoading();">
  10. <div id="loadingMessage">
  11. <img src="loading_image.gif" />
  12. </div>
  13. <img src="your_massive_image.jpg" />
  14. </body>
  15. </html>
When Autumn Falls [ http://www.whenautumnfalls.co.uk ] &&
Designdotworks [ http://www.designdotworks.co.uk ] Web / Graphic / Software Design
Reply With Quote Quick reply to this message  
Join Date: Apr 2008
Posts: 496
Reputation: veledrom is an unknown quantity at this point 
Solved Threads: 0
veledrom veledrom is offline Offline
Posting Pro in Training

Re: Loading bar

 
0
  #3
Apr 8th, 2009
I'll try this and let you know. Thanks for now.
Reply With Quote Quick reply to this message  
Reply

This thread is more than three months old.
Perhaps start a new thread instead?
Message:



Similar Threads
Other Threads in the JavaScript / DHTML / AJAX Forum
Thread Tools Search this Thread



About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC