UprisingValkyrie Posted May 23, 2014 Group: Members Topic Count: 28 Topics Per Day: 0.01 Content Count: 79 Reputation: 1 Joined: 02/24/14 Last Seen: April 21, 2016 Share Posted May 23, 2014 And Im using this html code. <!DOCTYPE html> <html> <head> <script type="text/javascript"> <!--> var image1=new Image() image1.src="loading00.jpg" var image2=new Image() image2.src="loading01.jpg" var image3=new Image() image3.src="loading02.jpg" //--> </script> </head> <body> <img src="loading00.jpg" name="slide" width="800" height="600"> <script type="text/javascript"> <!-- var step=1 function slideit(){ document.images.slide.src=eval("image"+step+".src") if(step<3) step++ else step=1 setTimeout("slideit()",2500) } slideit() //--> </script> </body> </html> can someone help me? Quote Link to comment Share on other sites More sharing options...
Emistry Posted May 23, 2014 Group: Forum Moderator Topic Count: 93 Topics Per Day: 0.02 Content Count: 10018 Reputation: 2369 Joined: 10/28/11 Last Seen: Sunday at 05:32 PM Share Posted May 23, 2014 try this ? <img src="loading00.jpg" name="slide" width="800" height="600" style="max-height:800; max-width:600" > edit the value here style="max-height:800; max-width:600" Quote Link to comment Share on other sites More sharing options...
Fluffle Puff Posted May 24, 2014 Group: Members Topic Count: 29 Topics Per Day: 0.01 Content Count: 375 Reputation: 88 Joined: 12/30/11 Last Seen: May 3, 2016 Share Posted May 24, 2014 Line 15: <body> to: <body scroll="no"> Quote Link to comment Share on other sites More sharing options...
kitty14 Posted June 4, 2014 Group: Members Topic Count: 103 Topics Per Day: 0.02 Content Count: 323 Reputation: 4 Joined: 12/09/13 Last Seen: May 9, 2023 Share Posted June 4, 2014 (edited) . Edited June 4, 2014 by kitty14 Quote Link to comment Share on other sites More sharing options...
Question
UprisingValkyrie
And Im using this html code.
can someone help me?
Link to comment
Share on other sites
3 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.