Created
March 3, 2020 06:47
-
-
Save jesraygarciano/38aa8c4ef1b3f54161a54cee99997c91 to your computer and use it in GitHub Desktop.
Creates an animated underline effect when the text is hovered over.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment