react-scroll-effects icon indicating copy to clipboard operation
react-scroll-effects copied to clipboard

How to control initial visibility?

Open supra28 opened this issue 7 years ago • 1 comments

If i use this to create an entrance animation it would be ideal to have the element's initial visibility turned off.

supra28 avatar Jul 04 '17 11:07 supra28

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}}

TheFunkyMonk avatar Jul 10 '17 23:07 TheFunkyMonk