Keyframes
Define keyframes to be used in a CSS animation.
/** @jsxImportSource @compiled/react */
import { keyframes } from '@compiled/react';
const fadeOut = keyframes({
from: {
opacity: 1,
},
to: {
opacity: 0,
},
});
const animationStyles = css({
animation: `${fadeOut} 2s`,
});
const FadeOut = <div css={animationStyles}>I am fading out!</div>;
Suggest changes to this page ➚
Previous
cssMapNext
[Archived] CSS