react-scroll-effects
react-scroll-effects copied to clipboard
How to control initial visibility?
If i use this to create an entrance animation it would be ideal to have the element's initial visibility turned off.
Fyi, this appears to be a bug with line 123 (of the src file):
style={{style, ...props.style}}
style
is being defined as a const
a few lines earlier, rather than being being assigned to the props object. You can fix this by changing this line to:
style={{style, ...style}}