Zunächst einmal guten Abend
Ich habe ein Problem ich habe eine Diashow erstellt und iwie läuft die nur auf dem Internet Explorer. Auf jedem anderen Browser funktioniert sie nicht.
<?xml version="1.0"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>TwickSoft</title>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
</head>
<body>
<img id="DynBild" src="twicksoft.jpg"
style="filter:blendTrans(Duration=2,Transition=12)" width="700"
height="300" >
<script language="javascript" type="text/javascript">
var bilder = new Array('twicksoft.jpg','Twickdesign.jpg');
var zeit = 5000;
var tmp=0;
window.setTimeout("Wechsel()", zeit);
function Wechsel () {
tmp++;
if(tmp>=bilder.length)
{
tmp=0;
}
document.all.DynBild.filters.blendTrans.Apply();
document.all.DynBild.src = bilder[tmp];
document.all.DynBild.filters.blendTrans.Play();
setTimeout("Wechsel()", zeit);
}
</script>
</body></html>
Kann mir jmd sagen wie ich es löse dass diese diashow auf jedem browser läuft? - Ja JS ist auf allen meinen Browsern an
Ich habe ein Problem ich habe eine Diashow erstellt und iwie läuft die nur auf dem Internet Explorer. Auf jedem anderen Browser funktioniert sie nicht.
<?xml version="1.0"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>TwickSoft</title>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
</head>
<body>
<img id="DynBild" src="twicksoft.jpg"
style="filter:blendTrans(Duration=2,Transition=12)" width="700"
height="300" >
<script language="javascript" type="text/javascript">
var bilder = new Array('twicksoft.jpg','Twickdesign.jpg');
var zeit = 5000;
var tmp=0;
window.setTimeout("Wechsel()", zeit);
function Wechsel () {
tmp++;
if(tmp>=bilder.length)
{
tmp=0;
}
document.all.DynBild.filters.blendTrans.Apply();
document.all.DynBild.src = bilder[tmp];
document.all.DynBild.filters.blendTrans.Play();
setTimeout("Wechsel()", zeit);
}
</script>
</body></html>
Kann mir jmd sagen wie ich es löse dass diese diashow auf jedem browser läuft? - Ja JS ist auf allen meinen Browsern an