-
Notifications
You must be signed in to change notification settings - Fork 25
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
What about keyframes animation? #54
Comments
Should work, can you post your code? |
Hi @Grimones, there is an example with |
@kof It was sometime ago and i haven't saved it. I thought that i have missed something and was trying to search better. Now i came back to this and only one option left for me it was to open an issue to ask help. @lttb Hi. Thanks for reply. Yep, it is working. const animation = keyframes({
from: {opacity: 0},
to: {opacity: 1}
})
const Item = styled('div')({
animation: `${animation} 2s`
}) |
@Grimones we don't have such thing yet, but I think it's a nice to have feature. We'll try to support it soon |
@lttb Great! However thank you for pointing in right direction. Will proceed with Styled |
Have any progress here? |
As of right now you can use https://github.com/cssinjs/styled-jss#base-style-sheet . |
Do styled-jss support keyframes animations and what is the syntax? Unfortunately i wasn't able to get it work using example from here
The text was updated successfully, but these errors were encountered: