Advertisement
Viky__9

cambio colore al passaggio del mouse

Jun 17th, 2021
212
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6.     <title>Document</title>
  7. </head>
  8. <body>
  9.     <p id="contenitore" onmouseover="muovi()" onmouseout="allontana()">
  10.         Prova mouse, vedi che cambia colore </p>
  11.         <script>
  12.  
  13. function muovi(){
  14.     document.getElementById("contenitore").style.color="blue";
  15.  
  16. }
  17. function allontana(){
  18. document.getElementById("contenitore").style.color="red";
  19.  
  20. }
  21.  
  22.  
  23.         </script>
  24.  
  25.    
  26. </body>
  27. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement