-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.module.less
52 lines (50 loc) · 1.1 KB
/
index.module.less
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
@keyframes scrollItem {
0%,
10% {
transform: translateX(0);
}
90%,
100% {
transform: translateX(-100%);
}
}
@keyframes scrollWrap {
0%,
10% {
transform: translateX(0);
}
90%,
100% {
transform: translateX(100%);
}
}
.scrollWrap {
animation: scrollWrap linear 4s alternate infinite;
.scrollItem {
animation: scrollItem linear 4s alternate infinite;
}
&:hover {
animation-play-state: paused;
.scrollItem {
animation-play-state: paused;
}
}
}
.scrollHeightWrap {
--scroll-height: 20px;
height: var(--scroll-height);
.scrollContainer {
transform: translateY(
calc(calc(-100% + var(--scroll-height) + var(--scroll-height)) * 2)
);
max-height: calc(var(--scroll-height) * 3);
.unScrollItem {
max-height: calc(var(--scroll-height) * 2);
line-height: var(--scroll-height);
}
.scrollItem {
height: var(--scroll-height);
line-height: var(--scroll-height);
}
}
}