Css animation
TODOs¶
-
- download complete: bouncing arrow
- Spatial Orientation
- offscreen animation
- side bar => will come from the left/right
- Timing
- 150-500ms
- smaller animations should take less time
- larger animations should take more time
- Easing
- ease-in-out
- Clarity
- don't animate so many things at once
- no intersecting paths
- staggering animations
- Visual Continuinity
- shape morphing
Pause a CSS keyframe animation¶
const animations = document.querySelector(".circle").getAnimations();
animations.forEach(animation => {
animation.pause();
});
bytes-pause-animation - CodeSandbox
Last update:
2023-04-24