-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
108 lines (103 loc) · 2.21 KB
/
Copy pathstyle.css
File metadata and controls
108 lines (103 loc) · 2.21 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
html{
height: 100%;
background: linear-gradient(#813b97,#463c96);
}
@-webkit-keyframes progress1 {
0%{
transform: scaleX(0);
opacity: 0.5;
}
90%{
transform: scaleX(1);
opacity: 1;
}
92%{
transform: scaleX(1);
opacity: 1;
}
100%{
transform: scaleX(1);
opacity: 0;
}
}
@keyframes progress1{
0%{
transform: scaleX(0);
opacity: 0.5;
}
90%{
transform: scaleX(1);
opacity: 1;
}
92%{
transform: scaleX(1);
opacity: 1;
}
100%{
transform: scaleX(1);
opacity: 0;
}
}
@-webkit-keyframes progress2 {
0%{
transform: scale(0.3,0.8) translateX(0);
opacity: 0;
}
90%{
transform: scale(1,1) translateX(300px) translateZ(0);
opacity: 1;
}
100%{
transform: scale(1,1) translateX(300px) translateZ(0)
opacity: 0;
}
}
@keyframes progress2{
0%{
transform: scale(0.3,0.8) translateX(0);
opacity: 0;
}
90%{
transform: scale(1,1) translateX(300px) translateZ(0);
opacity: 1;
}
100%{
transform: scale(1,1) translateX(300px) translateZ(0);
opacity: 0;
}
}
.line{
position: absolute;
top: 50%;
width: 300px;
left: 50%;
margin-left: -150px;
height: 3px;
background: rgba(255, 255, 255, 0.1);
}
.line:before{
-webkit-animation: progress1 4s infinite;
animation: progress1 4s infinite;
transform-origin: 0 0;
content: "";
display: block;
width: 300px;
height: 100%;
background: linear-gradient(to right,rgba
(255,255,255,0.1)10%,rgba(255,255,255,0.4) 80%, white);
}
.line:after{
content: "";
position: absolute;
-webkit-animation: progress2 4s infinite;
animation: progress2 4s infinite;
transform-origin: 90% 50%;
margin-left: -24px;
top: -9px;
width: 30px;
height: 21px;
border-radius: 2px;
background: rgba(210, 189, 255, 0.5);
filter: blur(8px);
box-shadow: 0 0 10px 6px rgba(210, 189, 255, 0.4), -20px 0 15px 4px rgba(210, 189, 255, 0.3),-40px 0 15px 2px rgba(210, 189, 255, 0.2), -60px 0 10px 1px rgba(210, 189, 255, 0.1),;
}