-1

I would like add the on hover animation in the “sign up”. I'm searching everywhere how do it but can't find anything.

<div onClick={() => toggleRegister("login")}>Sign In</div>
jonrsharpe
  • 115,751
  • 26
  • 228
  • 437
laurent
  • 55
  • 6

1 Answers1

0

You can use the CSS :hover pseudo-selector:

.sign-up-element {
    background-color: #f00;
    transition: background-color .3s; /* The transition property sets an animation to a specified attribute or "all" */
}

.sign-up-element:hover {
    background-color: #00f;
}

This approach works with any page that uses CSS.

Giancarl021
  • 511
  • 2
  • 12