GlobalEventHandlers.ontransitionend
The ontransitionend
property of the GlobalEventHandlers
mixin is an event handler that processes transitionend
events.
The transitionend
event is sent to when a CSS transition completes.
Note: If the transition is removed from its target node before the transition completes execution, the transitionend
event won't be generated. One way this can happen is by changing the value of the transition-property
attribute which applies to the target. Another is if the display
attribute is set to none
.
Syntax
var transitionEndHandler = target.ontransitionend;
target.ontransitionend = Function
Value
A Function
to be called when a transitionend
event occurs indicating that a CSS transition has completed on the target
, where the target object is an HTML element (HTMLElement
), document (Document
), or window (Window
). The function receives as input a single parameter: a TransitionEvent
object describing the event which occurred; the event's TransitionEvent.elapsedTime
property's value should be the same as the value of transition-duration
.
Note: elapsedTime
does not include time prior to the transition effect beginning; that means that the value of transition-delay
doesn't affect the value of elapsedTime
, which is zero until the delay period ends and the animation begins.
Example
In this example, we use the transitionrun
and transitionend
events to detect when the transition begins and ends, to cause a text update to occur during the transition. This could also be used to trigger animations or other effects, to allow chaining of reactions.
HTML
This creates a <div>
which we'll style with CSS below to make into a box that resizes and changes color and such.
CSS
The CSS below styles the box and applies a transition effect which makes the box's color and size change, and causes the box to rotate, while the mouse cursor hovers over it.
.box {
margin-left: 70px;
margin-top: 30px;
border-style: solid;
border-width: 1px;
display: block;
width: 100px;
height: 100px;
background-color: #0000FF;
color: #FFFFFF;
padding: 20px;
font: bold 1.6em "Helvetica", "Arial", sans-serif;
transition: width 2s, height 2s, background-color 2s, transform 2s, color 2s;
}
.box:hover {
background-color: #FFCCCC;
color: #000000;
width: 200px;
height: 200px;
transform: rotate(180deg);
}
JavaScript
Next, we need to establish our event handlers to change the text content of the box when the transition begins and ends.
let box = document.querySelector(".box");
box.ontransitionrun = function(event) {
box.textContent = "Zooming...";
}
box.ontransitionend = function(event) {
box.textContent = "Done!";
}
Result
The resulting content looks like this:
Notice what happens when you hover your mouse cursor over the box, then move it away.
Specifications
Browser compatibility
|
Desktop |
Mobile |
|
Chrome |
Edge |
Firefox |
Internet Explorer |
Opera |
Safari |
WebView Android |
Chrome Android |
Firefox for Android |
Opera Android |
Safari on IOS |
Samsung Internet |
ontransitionend |
81
79
26-79
Only supported on the Window interface.
|
81
18
|
51 |
No
The ontransitionend attribute is not supported in IE. To listen to this event, use document.addEventListener('transitionend', function() {}); .
|
68
66
15-66
Only supported on the Window interface.
|
11 |
81
79
≤37-79
Only supported on the Window interface.
|
81
79
26-79
Only supported on the Window interface.
|
51 |
59
57
14-57
Only supported on the Window interface.
|
11 |
13.0
11.0
1.5-11.0
Only supported on the Window interface.
|
See also