New skill: /animate
Build an animation from scratch while choosing the right curve, duration, properties, and so on.
Now you have the whole flow:
/find-animation-opportunities → /animate → /review-animations
https://t.co/jCwhthpi20
Design Engineering Tip
Your tooltip doesn’t always end up where you placed it?
When it reaches the viewport edge, the browser automatically chooses a fallback position. Anchored Container Queries let your CSS detect that chosen position, so your tooltip can animate from the correct direction.
@ container anchored(fallback: flip-block) {
.tooltip {
animation-name: slide-from-top;
}
}