TransitionEvent propertyName Property

Clash Royale CLAN TAG#URR8PPP
googletag.cmd.push(function() googletag.display('div-gpt-ad-1422003450156-2'); );
TransitionEvent propertyName Property
❮ DOM Events
❮ TransitionEvent
Example
Get the property name associated with the transition:
document.getElementById("myDIV").addEventListener("transitionend", myFunction);
function myFunction(event)
this.innerHTML = "Property name is: " + event.propertyName;
Try it Yourself »
Definition and Usage
The propertyName property returns the name of the CSS property associated
with the transition, when a transitionevent occurs.
This property is read-only.
Browser Support
The numbers in the table specify the first browser version that fully supports the property.
| Property | |||||
|---|---|---|---|---|---|
| propertyName | Yes | 10.0 | Yes | Yes | Yes |
Syntax
event.propertyNameTechnical Details
| Return Value: | A String, representing the name of the transition |
|---|
Related Pages
HTML DOM reference: The transitionend Event
HTML DOM reference: TransitionEvent elapsedTime Property
CSS reference: CSS3 transition Property
CSS reference: CSS3 transition-property Property
❮ DOM Events
❮ TransitionEvent