Is it possible to change the animation keyframe attributes by making inline adjustments.
Take for example
@-moz-keyframes slidein { from {
Here's a way to do this using CSS variables:
@keyframes slide { from { width: var(--from-width); } to { width:var(--to-width); } }
That obviously won't work for all cases, but if you just need to customize some numbers in an existing set of keyframes, then it may work for you.