index.module.less 424 B

123456789101112131415161718192021
  1. .wrap{
  2. max-width: 100%;
  3. overflow: hidden;
  4. display: flex;
  5. align-items: center;
  6. &.isAnitaion, &:hover{
  7. .notice{
  8. width: auto;
  9. overflow: initial;
  10. }
  11. }
  12. }
  13. .notice{
  14. transition-timing-function: linear;
  15. transition-duration: 5s;
  16. width: 100%;
  17. overflow: hidden;
  18. text-overflow: ellipsis;
  19. white-space: nowrap;
  20. transition-timing-function: linear;
  21. }