UNPKG

motion-v

Version:

<h1 align="center"> <img width="35" height="35" alt="Motion logo" src="https://github.com/user-attachments/assets/00d6d1c3-72c4-4c2f-a664-69da13182ffc" /><br />Motion for Vue</h1>

18 lines (17 loc) 558 B
import { AnimationFeature } from "./animation/animation.mjs"; import { createVisualElement } from "../state/create-visual-element.mjs"; import { PressGesture } from "./gestures/press/index.mjs"; import { HoverGesture } from "./gestures/hover/index.mjs"; import { InViewGesture } from "./gestures/in-view/index.mjs"; import { FocusGesture } from "./gestures/focus/index.mjs"; const domAnimation = { renderer: createVisualElement, features: [ AnimationFeature, PressGesture, HoverGesture, InViewGesture, FocusGesture ] }; export { domAnimation };