Advertisement
ityizhuo

underline animation

Jul 21st, 2021
328
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. <style>
  2. @font-face {
  3. font-family: lovely;
  4. src: url(https://dl.dropbox.com/s/xde2bkhiie1bm8r/LovelyRegular.ttf);
  5. }
  6. .hover-underline-animation {
  7. display: inline-block;
  8. position: relative;
  9. color: #0087ca;
  10. font-family: lovely;
  11. font-size: 20px;
  12. font-weight: bold;
  13. }
  14.  
  15. .hover-underline-animation:after {
  16. content: '';
  17. position: absolute;
  18. width: 100%;
  19. transform: scaleX(0);
  20. height: 2px;
  21. bottom: 0;
  22. left: 0;
  23. background-color: #0087ca;
  24. transform-origin: bottom right;
  25. transition: transform 0.25s ease-out;
  26. }
  27.  
  28. .hover-underline-animation:hover:after {
  29. transform: scaleX(1);
  30. transform-origin: bottom left;
  31. }
  32. </style>
  33.  
  34. <p class="hover-underline-animation"><a href="URL">home.</a></p>
  35.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement