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