UNPKG

html-trajectory

Version:

Animate HTML elements along a curved path from their current position to a target element. Eg. a product photo flying into the cart icon.

11 lines (10 loc) 304 B
export default function projectile(flyingId: string, targetId: string, options?: { moveX?: boolean; moveY?: boolean; duration?: number; acceleration?: number; scale?: number; onTransitionEnd?: () => void; removeOriginal?: boolean; resetTransformation?: boolean; }): void;