Redirect nach Ablauf eines Gifs

Nicole_B

Grünschnabel
Hallo zusammen,

ich bin neu hier und habe gleich ein kleines Problem ;)
Jemand möchte eine Seite erstellt haben, die ein animiertes Gif enthält. Nach Ablauf der Animation soll automatisch eine Folgeseite erscheinen. Ich poste hier mal meinen Code rein. Der funktioniert auch unter IE und Opera, aber halt nicht im Mozilla. Im Mozilla wird die Animation nicht angezeigt. Hat jemand vielleich eine Idee ? Oder ist der Code überhaupt nicht zu gebrauchen ?

Danke für Eure Hilfe

Nicole


PHP:
<script>

<!--
var once = 0;
function Animation_start()

{
	if (once==0)
	{
		wDIV.style.visibility="visible";
		setTimeout("redirect()",9000);
	}
	once++;
}

function redirect()
{
	window.document.location.href="default_start.asp";
}



// --></script>


<table width="100%" style="height:100%" border="0" cellspacing="0" cellpadding="0" align="center">
 <tr>
    <td>
	<table border="0" width="748" align="center" cellpadding="0" cellspacing="0">
	   <tr>

    	      <table border="0" align="center">
	                  <tr>
	                          <td>
	                             <div id="wDIV" style="visibility:hidden">
	                                  <img  onload="Animation_start()" src="images/animation.gif">
	                             </div>

	                          </td>
	                  </tr>
	                  <tr>
	                          <td align="center"><a class="sourceDir" href="default_start.asp">>> Skip Intro</a></td>
	                  </tr>
	             </table>
             </tr>
          </table>
      </td>
   </tr>
 </table>
 
Zuletzt bearbeitet von einem Moderator:
PHP:
// Falsch
wDIV.style.visibility="visible";

// Richtig
document.getElementByID('wDIV').style.visibility="visible";
 
Code:
window.document.getElementById("wDIV").style['visibility'] = "visible";
JavaScript ist Case-Sensitive!
 

Neue Beiträge

Zurück