Advertisement
Guest User

Untitled

a guest
Mar 20th, 2019
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.  
  4. <head>
  5.  
  6. </head>
  7. <body>
  8. <div id="main">
  9. <button onclick="back()">WSTECZ</button>
  10. <button onclick="next()">DALEJ</button>
  11. <button id="button_kolor" onclick="red()">ZMIEN KOLOR</button>
  12. <p>Witam na mojej stronie</p>
  13. </div>
  14. <script>
  15. function back(){
  16. window.history.back();
  17. }
  18. function next(){
  19. window.history.forward();
  20. }
  21. function red()
  22. {
  23. document.bgColor='red'
  24.  
  25. }
  26.  
  27.  
  28. var kolorek = "white"
  29. function zmianakolor()
  30. {
  31. if (kolorek == "white"){
  32. document.bgColor='black'
  33. document.getElementById("main").style.color = "White"
  34. kolorek = "black";
  35. }
  36. else if (kolorek == "black"){
  37. document.bgColor='white'
  38. document.getElementById("main").style.color = "black"
  39. kolorek = "yellow";
  40. }
  41. else if (kolorek == "yellow"){
  42. document.bgColor='yellow'
  43. document.getElementById("main").style.color = "black"
  44. kolorek = "white";
  45. }
  46.  
  47.  
  48. }
  49.  
  50. </script>
  51. <button onclick="zmianakolor()">ZMIEN KOLOR</button>
  52. </body>
  53. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement