-
Notifications
You must be signed in to change notification settings - Fork 200
Expand file tree
/
Copy pathTitle.scss
More file actions
124 lines (116 loc) · 2.28 KB
/
Title.scss
File metadata and controls
124 lines (116 loc) · 2.28 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
$t: 2s;
$slides: 9;
$color: hsl(15, 75%, 40%);
.svg-draw {
width: 15vmax;
height: 20vmax;
stroke: $color;
animation: rotateHue infinite $t * $slides * 2 linear;
@keyframes rotateHue {
0% {
filter: hue-rotate(0deg);
}
20% {
filter: hue-rotate(45deg);
}
25% {
filter: hue-rotate(90deg);
}
45% {
filter: hue-rotate(135deg);
}
50% {
filter: hue-rotate(180deg);
}
70% {
filter: hue-rotate(225deg);
}
75% {
filter: hue-rotate(270deg);
}
95% {
filter: hue-rotate(315deg);
}
100% {
filter: hue-rotate(360deg);
}
}
animation-delay: calc($t / 21);
}
@keyframes strokeOffset {
to {
stroke-dashoffset: 0px;
}
}
#mask-a-1 {
animation: strokeOffset 1s linear forwards;
}
#mask-a-2 {
animation: strokeOffset 1s linear forwards 1s;
}
#mask-n {
animation: strokeOffset 0.5s linear forwards 2s;
}
#mask-o {
animation: strokeOffset 0.5s linear forwards 2.5s;
}
#mask-p-1 {
animation: strokeOffset 0.5s linear forwards 3s;
}
#mask-p-2 {
animation: strokeOffset 0.5s linear forwards 3.5s;
}
#mask-n-2 {
animation: strokeOffset 0.5s linear forwards 4s;
}
#mask-e {
animation: strokeOffset 0.5s linear forwards 4.5s;
}
#mask-s {
animation: strokeOffset 0.5s linear forwards 5s;
}
#mask-o-2 {
animation: strokeOffset 0.5s linear forwards 5.5s;
}
#mask-u {
animation: strokeOffset 0.5s linear forwards 6s;
}
#mask-r {
animation: strokeOffset 0.5s linear forwards 6.5s;
}
#mask-c {
animation: strokeOffset 0.5s linear forwards 7s;
}
#mask-e-2 {
animation: strokeOffset 0.5s linear forwards 7.5s;
}
#mask-p-2-1 {
animation: strokeOffset 0.5s linear forwards 8s;
}
#mask-p-2-2 {
animation: strokeOffset 0.5s linear forwards 8.5s;
}
#mask-r-2 {
animation: strokeOffset 0.5s linear forwards 9s;
}
#mask-o-3 {
animation: strokeOffset 0.5s linear forwards 9.5s;
}
#mask-j-1 {
animation: strokeOffset 0.5s linear forwards 10s;
}
#mask-j-2 {
animation: strokeOffset 0.5s linear forwards 10.5s;
}
#mask-j-3 {
animation: strokeOffset 0.5s linear forwards 11s;
}
#mask-e-3 {
animation: strokeOffset 0.5s linear forwards 11.5s;
}
#mask-c-t-1 {
animation: strokeOffset 0.5s linear forwards 12s;
}
#mask-c-t-2 {
animation: strokeOffset 0.5s linear forwards 12.5s;
}