El evento DOM onmousemove en HTML ocurre cuando el puntero se mueve sobre un elemento.
Etiquetas compatibles: admite todos los elementos HTML, EXCEPTO:
- <base>
- <bdo>
- <br>
- <cabeza>
- <html>
- <iframe>
- <meta>
- <parámetro>
- <script>
- <estilo>
- <título>
Sintaxis:
- En HTML:
<element onmousemove="myScript">
- En JavaScript:
object.onmousemove = function(){myScript};
- En JavaScript, usando el método addEventListener():
object.addEventListener("mousemove", myScript);
Ejemplo: uso del método addEventListener()
html
<!DOCTYPE html> <html> <head> <title> HTML DOM onmousemove Event </title> </head> <body> <center> <h1 id="eleID">GeeksforGeeks</h1> <p id="demo"></p> <script> document.getElementById( "eleID").addEventListener( "mousemove", function(event) { GFGfun(event); }); function GFGfun(event) { alert("A computer science portal") } </script> </center> </body> </html>
Salida:
Antes de mover:
Después de mover:
Navegadores compatibles: los navegadores compatibles con el evento DOM onmousemove se enumeran a continuación:
- Google Chrome
- explorador de Internet
- Firefox
- safari de manzana
- Ópera
Publicación traducida automáticamente
Artículo escrito por Vijay Sirra y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA