Advertisement
AnoTest

Exercice_Event_1.html(JS)

Jan 21st, 2021
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.48 KB | None | 0 0
  1. //Made by Samir
  2. <!DOCTYPE html>
  3. <html lang="en">
  4. <head>
  5.     <meta charset="UTF-8">
  6.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7.     <title>Exercice 1</title>
  8. </head>
  9. <body>
  10.     <img onmouseover="changeImage('rouge.gif')" onmouseout="changeImage('vert.gif')" src="vert.gif" alt="" id="image">
  11.  
  12.  
  13.     <script>
  14.  
  15.         function changeImage(url) {
  16.             document.getElementById('image').src=url;
  17.         }
  18.     </script>
  19. </body>
  20. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement