Direction in `framer-motion`
How we can reverse direction of framer-motion implemented animation? This is My Component, and This change background of box element from #000 to #ff0 : import React from ‘react’; import { motion } from ‘framer-motion’; import type { Variants } from ‘framer-motion’; const variants: Variants = { initial: { background: ‘#000’ }, animate: { background:… Read More Direction in `framer-motion`