Skip to content

Instantly share code, notes, and snippets.

@sioniks
Created February 14, 2019 22:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sioniks/091cdacb59304d2daaa26b878b745f3a to your computer and use it in GitHub Desktop.
Save sioniks/091cdacb59304d2daaa26b878b745f3a to your computer and use it in GitHub Desktop.
Hover underline animation #hover #animation
.hover-underline-animation {
display: inline-block;
position: relative;
color: #0087ca;
}
.hover-underline-animation::after {
content: '';
position: absolute;
width: 100%;
transform: scaleX(0);
height: 2px;
bottom: 0;
left: 0;
background-color: #0087ca;
transform-origin: bottom right;
transition: transform 0.25s ease-out;
}
.hover-underline-animation:hover::after {
transform: scaleX(1);
transform-origin: bottom left;
}
<p class="hover-underline-animation">Hover this text to see the effect!</p>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment