Earlier quoted context omitted.
Maybe English isn't their first language?
Doesnt matter, grammar still needs checkin!
React Simple Animate – UI Animation Made Simple
11–20 of 50 posts
Re: React Simple Animate – UI Animation Made Simple
#12Re: React Simple Animate – UI Animation Made Simple
#13It's kinda counterintuitive to have an element called . What happens if I render it two times in a row before it's done animating?
That may sound pedantic but the distinction is important.
React components aren't a "virtual DOM", they are a "component tree" that gets synced to the DOM. A component may or may not correspond to one or more elements in the DOM and it may wrap other components.
Thinking of "rendering" a component as "syncing the DOM" seems to be a common misunderstanding, especially when it comes to performance concerns (because manipulating the DOM unnecessarily is bad).
Re: React Simple Animate – UI Animation Made Simple
#14This looks promising, animations in React are a bit of a mess right now. React-motion requires a PhD to figure out, and I'd rather stick pins in my eyes than use Transition Group. I have had some moderate success with Popmotion, although I've also seen performance issues when staggering lists (likely down to my implementation rather than the library, but still).
Re: React Simple Animate – UI Animation Made Simple
#15This looks promising, animations in React are a bit of a mess right now. React-motion requires a PhD to figure out, and I'd rather stick pins in my eyes than use Transition Group. I have had some moderate success with Popmotion, although I've also seen performance issues when staggering lists (likely down to my implementation rather than the library, but still).
>I'd rather stick pins in my eyes than use Transition Group Why not? In combination with styled components it covers pretty much all my animation needs. The only thing missing is stagger for lists and maybe some way to integrate FLIP into it.
Re: React Simple Animate – UI Animation Made Simple
#16There's something about OSS that fails to do (or i'm not sure if it's OSS job): Teach how things work under the hood. Normally, it's beneficial 100x times when a OSS project tells how things work in a concise manner. In that way, it made sense for both users (they actually want to contribute back if they figure out how things work). One failure example is Next.JS. You never understand how things work under the hood w…
Re: React Simple Animate – UI Animation Made Simple
#17This looks promising, animations in React are a bit of a mess right now. React-motion requires a PhD to figure out, and I'd rather stick pins in my eyes than use Transition Group. I have had some moderate success with Popmotion, although I've also seen performance issues when staggering lists (likely down to my implementation rather than the library, but still).
Re: React Simple Animate – UI Animation Made Simple
#18Re: React Simple Animate – UI Animation Made Simple
#19Re: React Simple Animate – UI Animation Made Simple
#20Eg. how could you animate a component which gets replaced to a whole different part of the DOM-tree in react?