hallo,
ich hätte auf meiner website gerne eine slideshow, die automatisch funktioniert.
mein coding bisher:
<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...