Advertisement
afsarwebdev

text color animaion on hover

Aug 18th, 2017
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. //Hover text color animation
  2. //HTML markup
  3. <div class="text-center">
  4. <ul>
  5. <li><a href="#">Item one </a></li>
  6. <li><a href="#">Item Two</a></li>
  7. <li><a href="#">Item Three</a></li>
  8. <li><a href="#">Item Four</a></li>
  9. </ul>
  10. </div>
  11. //CSS
  12. div.text-center ul li a {
  13. font: 300 42px/1.5 "Helvetica Neue", sans-serif;
  14. margin-left: 80px;
  15. color: #d7a150;
  16. text-decoration: none;
  17. -webkit-background-clip: text;
  18. -webkit-text-fill-color: transparent;
  19. background-image: linear-gradient(to right, #283271, #283271 50%, #d7a150 50%);
  20. background-size: 200% 100%;
  21. background-position: 100%;
  22. }
  23. div.text-center ul li a:hover {
  24. transition: all 0.3s cubic-bezier(0, 0, 0.23, 1);
  25. background-position: 0%;
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement