-
Notifications
You must be signed in to change notification settings - Fork 102
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
(web) createAnimatedComponent seems to only work for style
prop?
#45
Comments
I believe this is because on the web we only have the DOM and hence the I think the previous solution on the web would call At least that's my understanding of the issue. |
IMO we shouldn't limit the library to only work for Maybe there should be an equivalent for The example above was a simple showcase of the bug but my use-case is, I don't actually do things on top of DOM but on top of WebGL, and I would like to trigger a |
for instance, in this example: https://gl-react-cookbook.surge.sh/animated I had to use " |
I would very much like to see additional prop types supported. I am wanting to use this to animate SVG paths which accept prop names like Currently getting around this by applying a listener to the animated value, and then calling |
following code only renders the initial animated value (0 0) but never gets animated.
however if I rename
mouse
tostyle
. it works as expected.The text was updated successfully, but these errors were encountered: