This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2020.
The CSSTransition interface of the Web Animations API represents an Animation object used for a CSS Transition.
This interface inherits properties from its parent, Animation.
CSSTransition.transitionProperty Read only
Returns the transition CSS property name as a string.
This interface inherits methods from its parent, Animation.
No specific methods.
The transition in the following example changes the width of the box on hover. Calling Element.getAnimations() returns an array of all Animation objects. In our case this returns a CSSTransition object, representing the animation created.
.box {
background-color: #165baa;
color: white;
width: 100px;
height: 100px;
transition: width 4s;
}
.box:hover {
width: 200px;
}
const item = document.querySelector(".box");
item.addEventListener("transitionrun", () => {
let animations = document.querySelector(".box").getAnimations();
console.log(animations[0]);
});
| Specification |
|---|
| CSS Transitions Level 2> # the-CSSTransition-interface> |
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | WebView on iOS | |
CSSTransition |
84 | 84 | 75 | 70 | 13.1 | 84 | 79 | 60 | 13.4 | 14.0 | 84 | 13.4 |
transitionProperty |
84 | 84 | 75 | 70 | 13.1 | 84 | 79 | 60 | 13.4 | 14.0 | 84 | 13.4 |
© 2005–2025 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/CSSTransition