UNPKG

vevet

Version:

Vevet is a JavaScript library for creative development that simplifies crafting rich interactions like split text animations, carousels, marquees, preloading, and more.

18 lines 456 B
import { isBrowser } from '../../internal/env'; export const STATIC_PROPS = { __staticProp: true, container: isBrowser ? window : null, hideNative: false, append: true, behavior: 'default', transformModifier: ({ x, y }) => `translate(${x}px, ${y}px)`, }; export const MUTABLE_PROPS = { __mutableProp: true, enabled: true, width: 50, height: 50, lerp: 0.2, autoStop: true, }; //# sourceMappingURL=props.js.map