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…