You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
403 B

  1. function Wuerfel(){
  2. var Zufallszahl;
  3. var Ausgabe=document.getElementById('AusgabeWuerfel1');
  4. var Ausgabebild=document.getElementById('Bildwuerfel1');
  5. Zufallszahl=Math.random();
  6. Zufallszahl=Math.ceil(Zufallszahl*6);
  7. Ausgabe.innerHTML = Zufallszahl;
  8. var Bild=["","img/1.png","img/2.png","img/3.png","img/4.png","img/5.png","img/6.png"];
  9. Ausgabebild.src=Bild[Zufallszahl];
  10. }