index.less 356 B

123456789101112131415161718192021
  1. .ripple-container {
  2. position: absolute;
  3. top: 0;
  4. left: 0;
  5. width: 0;
  6. height: 0;
  7. overflow: hidden;
  8. pointer-events: none;
  9. }
  10. .ripple-effect {
  11. position: relative;
  12. z-index: 9999;
  13. width: 1px;
  14. height: 1px;
  15. margin-top: 0;
  16. margin-left: 0;
  17. pointer-events: none;
  18. border-radius: 50%;
  19. transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  20. }