There are no obvious CSS properties or values for making a @keyframe
animation wait between iterations, or have a pause before starting. But Nils Riedmann cooked up a clever way to do it using linear()
animation timing. I think this is cleaner than faking it with multiple benign keyframe steps. Remember linear
is not the same as linear()
. The later is a function that can take any number of points and thus create any sort of easing.
Loading Data with TanStack Router: Getting Going
TanStack Router is one of the most exciting projects in the web development ecosystem right now, and it doesn’t get nearly enough attention. It’s a fully fledged client-side application framework that supports advanced routing, nested layouts, and hooks for loading data. Best of all, it does all of this with deep type safety. I previously […]