interface MotionConfigContext {
    isStatic: boolean;
    reducedMotion?: ReducedMotionConfig;
    transformPagePoint: TransformPoint;
    transition?: Transition;
}

Properties

isStatic: boolean

Internal. Determines whether this is a static context ie the Framer canvas. If so, it'll disable all dynamic functionality.

reducedMotion?: ReducedMotionConfig

If true, will respect the device prefersReducedMotion setting by switching transform animations off.

transformPagePoint: TransformPoint

Internal, exported only for usage in Framer

transition?: Transition

Defines a new default transition for the entire tree.

Generated using TypeDoc