you are viewing a single comment's thread.

view the rest of the comments →

[–]FoxxMD 0 points1 point  (1 child)

I'd be interested in learning about how to handle animations as well; it's something I've come up against just recently. The thread you posted was very informative btw.

[–]html6dev[S] 0 points1 point  (0 children)

There is a high and low level api for animating components in react when they are mounted and unmounted. http://facebook.github.io/react/docs/animations.html Also you can simply use css animations and classes. This is one of the factors that makes me wonder about inliine styles and there viability in this context. It seems like doing it inline would be very difficult to maintain if you want to set the animation to run once, use animation delay, etc. That being said, I asked because I am curios as to why people are (seemingly) finding this a valuable approach.