Thomas Belin
@atomrc
Front-End Architect ๐ค
I leave code cleaner than I found it.
ID: 534678984
http://blog.atomrc.dev 23-03-2012 18:29:03
7,7K Tweet
892 Followers
387 Following
Fade elements in and out on scroll in a window with CSS? โ ul { scroll-padding-inline: 200px; } article { animation: highlight; animation-timeline: view(inline); } @โkeyframes highlight { entry 0%, exit 100% { opacity: 0; } entry 100%, exit 0% { opacity: 1; } } cc Adam Wathan
๐ DRY โ the common source of bad abstractions - Swizec Teller Greatly illustrates how React devs could end up creating the wrong abstraction Popular React UI libraries learned over the year to not over-abstract, giving you more flexibility swizec.com/blog/dry-the-cโฆ
Thank you Josh W. Comeau for explaining the `useDeferredValue` hook so well. Nice and clear ๐คฉ. joshwcomeau.com/react/use-defeโฆ