Hat es drauf
habe diesen Code auf einer Seite- funktioniert tadellos im IE aber überhaupt nicht im FF.
woran könnte es liegen ?
woran könnte es liegen ?
HTML:
<p align="center"><img id="DynBild" style="FILTER: blendTrans(Duration=2,Transition=12)" height="453" alt="" width="709" src="http://217.196.177.129/wcms/ftp/u/2853.jpg" /> <script language="JScript" type="text/jscript">
var bilder = new Array('http://217.196.177.129/wcms/ftp/u/2853.jpg','http://217.196.177.129/wcms/ftp/u/usedharleydavidson-pfalz.com/siteimages/2854.jpg','http://217.196.177.129/wcms/ftp/u/2855.jpg','http://217.196.177.129/wcms/ftp/u/2856.jpg','http://217.196.177.129/wcms/ftp/u/2857.jpg','http://217.196.177.129/wcms/ftp/u/2858.jpg','http://217.196.177.129/wcms/ftp/u/2859.jpg');
var zeit = 7000;
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></p>