Advertisement
Guest User

Untitled

a guest
Nov 14th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. <body>
  2. <script type="text/javascript">
  3. function kolor_tla(kolor){
  4. document.bgColor=kolor;
  5.  
  6. kolor_tla();
  7. kolor_tla();
  8. kolor_tla();
  9. }
  10. </script>
  11. <p onMouseOver=kolor_tla("red")>tło czerwone</p>
  12. <p onMouseOver=kolor_tla("orange")>tło pomoarańczowe</p>
  13. <p onMouseOver=kolor_tla("yellow")>tło żółte</p>
  14. <p onMouseOver=kolor_tla("green")>tło zielone</p>
  15. <p onMouseOver=kolor_tla("#00FFFF")>tło jasnoniebieskie</p>
  16. <p onMouseOver=kolor_tla("blue")>tło niebieskie</p>
  17. <p onMouseOver=kolor_tla("purple")>tło fioletowe</p>
  18. </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement