Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2019
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="pl">
  3. <head>
  4. <meta charset="utf-8">
  5. <style>
  6. #pole{
  7. width:100%;
  8. height:2000px;
  9. }
  10. </style>
  11. <script>
  12.  
  13. function liczenie(){
  14. while(hours<24){
  15. var hours = document.getElementById("godziny").value;
  16. var minutes = document.getElementById("minuty").value;
  17. var seconds = document.getElementById("sekundy").value;
  18. var i=1;
  19. document.getElementById("pole").innerHTML = i+") "+hours+":"+minutes+":"+seconds;
  20. i++;
  21. }
  22. }
  23. </script>
  24. </head>
  25. <body>
  26. <div id="container">
  27. <input id="godziny" type="number" placeholder="Godzina np. 15" value=""></br>
  28. <input id="minuty" type="number" placeholder="Minuta np. 30" value=""></br>
  29. <input id="sekundy" type="number" placeholder="Sekunda np. 57" value=""></br>
  30. <button onclick="liczenie()">Wylicz respy bossów</button>
  31. <div id="pole"></div>
  32. </div>
  33. </body>
  34. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement