You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there any way to handle the CSS animations @keyframes? The keyframes name is another case where CSS makes use of global names, which would be nice to get rid of.
Maybe we could add a RCSS.registerKeyframes method which would generate the keyframes name similar to how registerClass works currently. Example:
Is there any way to handle the CSS animations
@keyframes
? The keyframes name is another case where CSS makes use of global names, which would be nice to get rid of.Maybe we could add a
RCSS.registerKeyframes
method which would generate the keyframes name similar to howregisterClass
works currently. Example:We could also maybe infer the percent character so we could use
{ 0: { top: 0 }, 100: { top: '100px' } }
.The text was updated successfully, but these errors were encountered: