easing is everything use different CSS timing functions per axis for motion paths 👨🍳 .p { animation: x .8s var(--x-time), y .8s var(--y-time); animation-composition: accumulate; 👈 } @keyframes x { to { translate: var(--x) 0 } @keyframes y { to { translate: 0 var(--y) }
67 likes 1 replies
?