hallo,
ich hätte auf meiner website gerne eine slideshow, die automatisch funktioniert.
mein coding bisher:
funktioniert leider nicht :-( ich hoffe ihr könnt mir helfen wo mein fehler liegt bzw. diesen ausbessern danke schon mal!
lg
rjung
ich hätte auf meiner website gerne eine slideshow, die automatisch funktioniert.
mein coding bisher:
Code:
<script type="text/javascript">
var x=0;
function rotate(num){
fs=document.ff.slide;
x=num%fs.length;
if(x<0) x=fs.length-1;
document.images.show.src=fs.options[x].value;
fs.selectedIndex=x;}
function auto() {
rotate(++x);
}
</script>
<form name="ff">
<table cellpadding="3" style="border:0px;">
<tr><td align=center>
<img src="http://wwww.meinfotot.at/image0.jpg"" name="show">
</td></tr>
<tr><td align=center style="border:0px">
<se<option value="http://wwww.meinfotot.at/image1.jpg"></option>
<option value="http://wwww.meinfotot.at/image2.jpg"></option>
<option value="http://wwww.meinfotot.at/image3.jpg"></option>
<option value="http://wwww.meinfotot.at/image4.jpg"></option>
<option value="http://wwww.meinfotot.at/image5.jpg"></option>
</select>
</td></tr>
</table>
</form>
lg
rjung