ICT30016-Assignment-3/node_modules/framer-motion/dist/es/motion/features/gestures.mjs
dlawler489 a79a6afd34 intial
intial
2025-09-16 12:09:52 +10:00

21 lines
492 B
JavaScript

import { HoverGesture } from '../../gestures/hover.mjs';
import { FocusGesture } from '../../gestures/focus.mjs';
import { PressGesture } from '../../gestures/press.mjs';
import { InViewFeature } from './viewport/index.mjs';
const gestureAnimations = {
inView: {
Feature: InViewFeature,
},
tap: {
Feature: PressGesture,
},
focus: {
Feature: FocusGesture,
},
hover: {
Feature: HoverGesture,
},
};
export { gestureAnimations };