I have infinite animation, from react-animations library. Can you please tell me if there is a way to make a delay between animation cycles? As far as I know, it is not possible to do this with styles.
import { rubberBand } from "react-animations";
import Radium, { StyleRoot } from "radium";
...
<StyleRoot style={styles.animation}>
<Button />
</StyleRoot>
...
animation: {
animationDuration: "1s",
animationDelay: "0.5s",
animationTimingFunction: "ease-in-out",
animationIterationCount: "infinite",
animationName: Radium.keyframes(rubberBand, "rubberBand"),
},