sociomantic-tsunami / zoidberg

CSS Animation API
MIT License
0 stars 1 forks source link

Export animation rules singularly #27

Closed jolene-borrelli-sociomantic closed 7 years ago

jolene-borrelli-sociomantic commented 7 years ago

It is possible to store multiple animation rules using a comma-separated list for each animation rule property. There might not always be as many values set in each property for each animation-name provided. The values are applied in order and given the situation there are not unique values for each animation-name (or excessive values) the values are distributed in a cyclical way ie.

animation-name : bounce, zoom, jiggle
animation-delay : 1ms, 2s

Will be allocated bounce/1ms, zoom/2s, jiggle/1ms

Add an export option that will export each animation per animation-name given their individual settings.