Advertisement
Guest User

Untitled

a guest
Nov 21st, 2019
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.  
  5. <!-- metadata goes in head -->
  6.  
  7. <title>Colors!!</title>
  8.  
  9.  
  10. </head>
  11. <body>
  12. <!-- content goes in the body -->
  13. <h1>Zmieniamy kolor tła co 2 sekundy!!</h1>
  14.  
  15. <input id="button" type="submit" name="button" value="Biały" style="width: 5%" onclick="myFunction()"/>
  16.  
  17. <script
  18. language="javascript" type="text/javascript">
  19. //vars
  20.  
  21. //alert("Zmiana koloru tła, zadanie 3.");
  22. document.body.style.backgroundColor = "red";
  23.  
  24. function myFunction() {
  25. document.getElementById("button").click();
  26. setInterval(function(){ document.body.style.backgroundColor = "blue"; }, 2000);
  27. setInterval(function(){ document.body.style.backgroundColor = "yellow"; }, 4000);
  28. }
  29.  
  30. </script>
  31. </body>
  32. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement