React | Animation And Transitions | Question 9

Last Updated :
Discuss
Comments

How can you animate an element on hover using Framer Motion in React?

JavaScript
<motion.div whileHover={{ scale: 1.2 }}>
    Hover over me!
</motion.div>

whileHover animates the scale of the element on hover.

whileTap animates the scale of the element on hover.

initial animates the scale of the element on hover.

animate animates the scale of the element on hover.

Share your thoughts in the comments