Pogledajte određenu poruku
Staro 15. 10. 2012.   #12
Br@nkoR
banned
Professional
 
Avatar Br@nkoR
 
Datum učlanjenja: 04.06.2005
Poruke: 371
Hvala: 0
738 "Hvala" u 83 poruka
Br@nkoR će postati "faca" uskoroBr@nkoR će postati "faca" uskoroBr@nkoR će postati "faca" uskoroBr@nkoR će postati "faca" uskoroBr@nkoR će postati "faca" uskoroBr@nkoR će postati "faca" uskoroBr@nkoR će postati "faca" uskoro
Default

HTML kôd:
<!DOCTYPE HTML>
<html>
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <title>Untitled Document</title>
    <style>
      .photo {
        display: none;
      }
    </style>
    <script type="text/javascript">
      window.onload = function() {
        var images = document.getElementsByClassName('photo'),
            delayInSeconds = 5, 
            current = 0;
        setTimeout(function() {
          images[current].style.display = 'inline-block';
          if(current < images.length - 1) {
            current++;
            setTimeout(arguments.callee, delayInSeconds * 1000);
          }
        }, delayInSeconds * 1000);
      }
  </script> 
  </head>
  <body>
    <img src="images/dukes.png" class="photo" />
    <img src="images/sl1.png" class="photo" />
    <img src="images/logo01.png" class="photo" />
  </body>
</html> 
__________________
Don't look at me; I'm lost too.
“If you can't dazzle them with brilliance, baffle them with bul*s**t.”

Poslednja izmena od Br@nkoR : 15. 10. 2012. u 23:05.
Br@nkoR je offline   Odgovorite uz citat