W3cubDocs

/Web APIs

Document: transitioncancel event

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

The transitioncancel event is fired when a CSS transition is canceled.

See GlobalEventHandlers.ontransitioncancel for more information.

Bubbles Yes
Cancelable No
Interface TransitionEvent
Event handler property GlobalEventHandlers.ontransitioncancel

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: transitioncancel.

Examples

This code adds a listener to the transitioncancel event:

document.addEventListener('transitioncancel', () => {
  console.log('Transition canceled');
});

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

document.ontransitioncancel = () => {
  console.log('Transition canceled');
};

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
transitioncancel_event
74
79
53
No
62
13.1
74
74
53
53
13.4
11.0

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/transitioncancel_event