Advertisement
Guest User

Untitled

a guest
Oct 21st, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. <html lang="pl">
  2.  
  3. <head>
  4.  
  5. <meta charset="UTF-8">
  6.  
  7. <title>rzut kostką</title>
  8. <link href="style.css" rel="stylesheet">
  9. </head>
  10.  
  11. <body>
  12.  
  13. <div id="informacja">
  14.  
  15. <p>„KLIKNIJ DWA RAZY NA KOSTKĘ ABY ZAGRAĆ JESZCZE RAZ</p>
  16.  
  17. </div>
  18.  
  19. <div id="box">
  20.  
  21.  
  22.  
  23.  
  24. <div>
  25.  
  26. <input id="przycisk" type="button" value="start" onclick="start()">
  27.  
  28. </div>
  29.  
  30.  
  31.  
  32. <div>
  33.  
  34. <img src="k1.png" id="kostka" ondblclick="kostka()">
  35.  
  36. </div>
  37.  
  38.  
  39.  
  40. </div>
  41.  
  42.  
  43. <script>
  44. function start(){
  45.  
  46. var f = document.getElementById("kostka");
  47. f.style.transform = 'rotate(360deg)';
  48. var r= Math.floor(Math.random()*6+1);
  49. document.getElementById("kostka").src='k'+r+'.png';
  50. document.getElementById("przycisk").style='opacity:0;';
  51. document.getElementById("informacja").style='opacity:1;';
  52.  
  53.  
  54.  
  55. }
  56.  
  57. function kostka(){
  58.  
  59. location.reload("start()");
  60.  
  61.  
  62. }
  63.  
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70.  
  71.  
  72.  
  73. </script>
  74.  
  75. </body>
  76.  
  77. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement