Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Hover effect on button using :after element - Animate out when mouse is out of button dimensions

I have this button animation defined: JSFIDDLE

The code is also included here:

HTML

<button>Hover to change color</button>

SCSS

$blue: #0084ff;
$blue-darker: darken($blue, 5);

@keyframes mymove {
    0% {width: 0%}
    100%  {width: 80%}
}

body {
  background: #20262E;
  padding: 20px;
  font-family: Helvetica;
}
button {
  margin: auto;
  background-color: $blue;
  border: 1px solid $blue;
  border-radius: 5px;
  padding: 8px 14px;
  font-size: 15px;
  color: #fff;
  cursor: pointer;
  position: relative;
   &:hover {
    &:after {
      content: "";
      position: absolute;
      bottom: 3px;
      width: 80%;
      height: 2px;
      background-color: white;
      left: 0;
      right: 0;
      margin: auto;
      animation-name: mymove;
      animation-duration: .5s;
     }
  }
}

It's a simple hover animation. The issue is when the mouse leaves the button, the :after element just disappears. I want to animate the :after element out when the mouse leaves? - How would you do that?

Should I modify the keyframe to also contain the opposite direction? 100% to 0% ? or something completely else?

EDIT:

Difference from this question is that I need to access the after element from the button. I have tried with this:

@keyframes mymove-out {
    from {&:after {
      width: 80%
      }}
    to  {&:after {
      width: 0
    }}
}

And using it on the button

animation: mymove-out .5s ease;

But this doesn't work. How do I access the after element from a keyframe?

like image 746
Jonas Praem Avatar asked Jan 23 '26 18:01

Jonas Praem


1 Answers

You can simplify your code with a background coloration and a transition:

body {
  background: #20262E;
  padding: 20px;
  font-family: Helvetica;
}

button {
  border: 1px solid #0084ff;
  border-radius: 5px;
  padding: 8px 14px;
  font-size: 15px;
  color: #fff;
  cursor: pointer;
  background:
   linear-gradient(#fff,#fff) 50% calc(100% - 3px) no-repeat,
   #0084ff;
  background-size:0% 2px;
  transition:.5s all;
   
}

button:hover {
  background-size:80% 2px;
}
<button>Hover to change color</button>
like image 108
Temani Afif Avatar answered Jan 25 '26 11:01

Temani Afif