• Making a html loading screen
    3 replies, posted
i need some help with some html i am trying to get a gif loading image in the middle over the background and have a 10 second background changer here is what i am using <html> <head> <title>loadingscreen</title> <style type="text/css"> body { padding:0px; margin:0px; background-color:#000000; } </style> <style> .loading { position:fixed; bottom:50px; left:10px; } </style> </head> <body> <img src="source.png" style="max-width:100%; max-height:100%; position:absolute; margin:auto; top:0; left:0; bottom:0; right:0;" alt=""> <img src="Loading.gif" class="loading"> </body> </html>
Use [code ] tags
[QUOTE=chips360;42787984]i need some help with some html i am trying to get a gif loading image in the middle over the background and have a 10 second background changer here is what i am using [code]<html> <head> <title>loadingscreen</title> <style type="text/css"> body { padding:0px; margin:0px; background-color:#000000; } </style> <style> .loading { position:fixed; bottom:50px; left:10px; } </style> </head> <body> <img src="source.png" style="max-width:100%; max-height:100%; position:absolute; margin:auto; top:0; left:0; bottom:0; right:0;" alt=""> <img src="Loading.gif" class="loading"> </body> </html>[/code][/QUOTE] What actually is the problem? I understand you want a GIF in the loading screen and I can see that. So, what do you exactly want?
[QUOTE=StreetlightRP;42807701]What actually is the problem? I understand you want a GIF in the loading screen and I can see that. So, what do you exactly want?[/QUOTE] He wants the GIF to be in the center of the page, and he wants the background to change every 10 seconds.
Sorry, you need to Log In to post a reply to this thread.