Guest User

Untitled

a guest
Jul 15th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. <html>
  2. <head><title> Ejemplo de los eventos onMouseDown y on MouseUp</title>
  3. <script language=JavaScript>
  4. function myButton_onmouseup() {
  5. document.form1.myButton.src = "img/arriba.png"
  6. }
  7.  
  8. function myButton_onmousedown() {
  9. document.form1.myButton.src = "img/arriba1.png"
  10.  
  11. }
  12. </script>
  13. </head>
  14. <body>
  15.  
  16. <FORM NAME=form1>
  17. <img id="capa2" NAME='myButton' class="img-circle" src="img/arriba.png" alt="Foto de AGUILA RUIZ"
  18. onmouseup="myButton_onmouseup()"
  19. onmousedown="myButton_onmousedown()">
  20. </FORM>
  21.  
  22. </body>
  23. </html>
Add Comment
Please, Sign In to add comment