dom / latest / document / transitionrun_event.html /

Document: transitionrun event

Experimental: This is an experimental technology
Check the Browser compatibility table carefully before using this in production.

The transitionrun event is fired when a CSS transition is first created, i.e. before any transition-delay has begun.

Bubbles Yes
Cancelable No
Interface TransitionEvent
Event handler property ontransitionrun

The original target for this event is the Element that had the transition applied. You can listen for this event on the Document interface to handle it in the capture or bubbling phases. For full details on this event please see the page on HTMLElement: transitionrun.

Examples

This code adds a listener to the transitionrun event:

document.addEventListener('transitionrun', () => {
  console.log('Transition is running but hasn't necessarily started transitioning yet');
});

The same, but using the ontransitionrun property instead of addEventListener():

document.ontransitionrun = () => {
  console.log('Transition started running');
};

See a live example of this event.

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
transitionrun_event
No
12
53
10
The ontransitionrun attribute is not supported in IE. To listen to this event, use document.addEventListener('transitionrun', function() {});.
No
13.1
No
No
53
No
13.4
No

See also

© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/Document/transitionrun_event