资源

网址

  • Gif 效果图

七彩动画.gif

源码

  1. .create-button {
  2. text-align: left;
  3. font-size: 1.2rem;
  4. border: none;
  5. margin-right: 0;
  6. position: relative;
  7. background: none;
  8. color: white
  9. }
  10. .create-button::after {
  11. content: '';
  12. position: absolute;
  13. bottom: 0;
  14. left: 0;
  15. width: 100%;
  16. height: 4px;
  17. background: -webkit-gradient(linear, left top, right top, from(#0ebeff), color-stop(#ffdd40), color-stop(#ae63e4), color-stop(#47cf73), color-stop(#0ebeff), color-stop(#ffdd40), color-stop(#ae63e4), to(#47cf73));
  18. background: linear-gradient(90deg, #0ebeff, #ffdd40, #ae63e4, #47cf73, #0ebeff, #ffdd40, #ae63e4, #47cf73);
  19. background-size: 200% 200%
  20. }
  21. .create-button:focus::after,.create-button:hover::after {
  22. -webkit-animation: rainbow-border 1.5s linear infinite;
  23. animation: rainbow-border 1.5s linear infinite
  24. }
  25. @-webkit-keyframes rainbow-border {
  26. 0% {
  27. background-position: 0% 50%
  28. }
  29. 50% {
  30. background-position: 100% 50%
  31. }
  32. 100% {
  33. background-position: 200% 50%
  34. }
  35. }
  36. @keyframes rainbow-border {
  37. 0% {
  38. background-position: 0% 50%
  39. }
  40. 50% {
  41. background-position: 100% 50%
  42. }
  43. 100% {
  44. background-position: 200% 50%
  45. }
  46. }