La propiedad TransitionEvent propertyName es una propiedad de solo lectura y se usa para devolver el nombre de la propiedad CSS asociada con una transición cuando ocurre un evento de transición .
Valor devuelto: Devuelve una string que representa el nombre de la transición.
Sintaxis:
event.propertyName
El siguiente programa ilustra la propiedad TransitionEvent propertyName:
Ejemplo: Obtener el nombre de la propiedad asociada con la transición.
<!DOCTYPE html> <html> <head> <title>TransitionEvent propertyName Property </title> <style> #MyDiv { width: 100px; height: 20px; background: green; transition: 3s; } #MyDiv:hover { width: 300px; } h1 { color: green; } h2 { font-family: Impact; } body { text-align: center; } </style> </head> <body> <h1>GeeksforGeeks</h1> <h2>TransitionEvent propertyName Property</h2> <p>Hover over the element to see the name of the CSS property the transition effect is for. </p> <div id="MyDiv"></div> <script> document.getElementById("MyDiv").addEventListener( "transitionend", myevent); function myevent(event) { // Return CSS property name. this.innerHTML = "CSS Property used: " + event.propertyName; } </script> </body> </html>
Producción:
Antes de hacer clic en el botón:
Después de hacer clic en el botón:
Navegadores compatibles:
- Ópera
- explorador de Internet
- Google Chrome
- Firefox
- safari de manzana
Publicación traducida automáticamente
Artículo escrito por Shubrodeep Banerjee y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA