123456789101112131415161718192021 |
- .wrap{
- max-width: 100%;
- overflow: hidden;
- display: flex;
- align-items: center;
- &.isAnitaion, &:hover{
- .notice{
- width: auto;
- overflow: initial;
- }
- }
- }
- .notice{
- transition-timing-function: linear;
- transition-duration: 5s;
- width: 100%;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- transition-timing-function: linear;
- }
|