properties
changelog

Animation Flow

Control animation flow or timing function and sequence behavior.

Usage:

  • @animate flow-*;

Reference

shilp.config.js
const shilpConfig = {
	source: "react",

	properties: {
		animate: {
			flow: {
				property: "animation-timing-function: <v><i>;",
				themeKey: "flow",
				values: {
					linear: "linear",
				},
			},
		},
	},
};

export default shilpConfig;