blumikus
Erfahrenes Mitglied
Ich habe ein Script gefunden, was nach einem neuladen der Seite ein Zufallsbild anzeigt. Nur möchte ich gerne noch einen passenden Link dazu haben. Leider habe ich 0 Ahnung von Javascript. Dieses Thema wurde auch schon oft hier beschrieben, bin aber nicht ganz Schlau aus den Antworten geworden. Hier mal das Script:
Ich hoffe das mir geholfen werden kann...wäre nett. :-(
Code:
function changePic(){
var imgURLs = [
'pics/jpg/modelle/alle/bild1.jpg',
'pics/jpg/modelle/alle/bild2.jpg',
'pics/jpg/modelle/alle/bild3.jpg',
'pics/jpg/modelle/alle/bild4.jpg',
'pics/jpg/modelle/alle/bild5.jpg',
'pics/jpg/modelle/alle/bild6.jpg',
'pics/jpg/modelle/alle/bild7.jpg',
'pics/jpg/modelle/alle/bild8.jpg',
'pics/jpg/modelle/alle/bild9.jpg',
'pics/jpg/modelle/alle/bild10.jpg'
];
var zufallsZahl = Math.floor((Math.random()*10)+1);
document.getElementById("Bild").src = imgURLs[zufallsZahl];
}
Ich hoffe das mir geholfen werden kann...wäre nett. :-(