Questions tagged [framerjs]

Framerjs is the ultimate tool for creating captivating animations and interactions quickly on both desktop and mobile platforms.

Setting up the starting value using the useAnimate hook in framer motion

One of the initial properties of the motion component is: <motion.div initial={{ x: "100%" }} animate={{ x: "calc(100vw - 50%)" }} /> When using useAnimate with the useInView hook: const [scope, animate] = useAnimate(); const ...