不记得从哪儿看到这张动图了,这个 Switch 开关有两个主题,明亮,黑暗。当我们点击组件时候,会在太阳+白云和月亮+星星的不断切换来呈现,并且伴随着炫酷的动画。不得不说这个看起来十分的炫酷,但是通过 CSS 实现起来也是真的费劲,比较耗头发。【在线预览】

img

组件定义

我们可以定义一个 button 按钮,添加 aria-checked=truearia-checked=false 来代表当前是开、关的状态。

通过给 button 设置圆角 border-radius 和光晕 box-shadow 可以很好的实现外框样式。注意注意的是,按钮实际是一个内凹的细节,所以我们在配置光晕的时候应该设置为 inset

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
button {
margin-top: 100px;
margin-left: 50%;
width: 390px;
height: 146px;
transform: translateX(-50%);
box-shadow: 0 10px 8px 0 rgba(51, 83, 113, 0.26) inset,
0 -10px 8px 0 rgba(85, 123, 158, 0.26) inset,
0 0 1px 1px rgb(239, 245, 249), 0 6px 2px 1px rgb(216, 223, 227);
border-radius: 146px;
border: 0;
padding: 12px;
position: relative;
overflow: hidden;
}

效果

img

到目前为止,似乎还是简单的。

太阳 & 月亮

我们绘制 2 个圆,一个代表月亮,一个代表太阳。通过 transform 进行一个动画效果,transition进行延时缓冲。

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
<button>
<div class="🌞">
<div class="🌛"></div>
</div>
</button>
.🌞 {
position: absolute;
top: 13px;
width: 120px;
height: 120px;
overflow: hidden;
border-radius: 50%;
z-index: 10;
background-color: rgb(243, 203, 43);
box-shadow: 0 5px 5px 0 rgb(215, 222, 234) inset,
0 -5px 5px 0 rgb(175, 156, 80) inset, 0 5px 6px 0 rgb(109, 106, 98);
}
.🌞 > .🌛 {
position: absolute;
left: 120px;
width: 120px;
height: 120px;
overflow: hidden;
border-radius: 50%;
z-index: 10;
background-color: rgb(202, 207, 214);
box-shadow: 0 5px 5px 0 rgb(215, 222, 234) inset,
0 -5px 5px 0 rgb(131, 131, 131) inset, 0 5px 6px 0 rgb(109, 106, 98);
}
input:not(:checked) + button > .🌞 {
transform: translate(0, 0);
transition: all 400ms linear;
}
input:checked + button > .🌞 {
transform: translate(246px, 0);
transition: all 400ms linear;
}
input:checked + button > .🌞 .🌛 {
left: 0;
transform: translate(0, 0);
transition: all 400ms linear;
}

img

背景 & 光晕

接下来就是设置背景颜色,以及光晕效果。我们注意到这里有三个光晕效果,这个我们可以通过定义一个光晕,其他两个基于这个光晕定义伪类来实现。分别设置宽高为 220px、320px 和 420px,然后再根据绝对定义偏移。当然必不可少的依然是 transform + transition 动画。

1
2
3
4
5
6
// 简化
button > .⭕️ {}
button > .⭕️::before {}
button > .⭕️::after {}

<div class="⭕️"></div>

img

白云 ☁️

定义白云 ☁️ 组件,针对每个云朵组件单独设置大小、位置,这个简单。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
 <div class="💭">
<div class="☁️"></div>
/** 总共 8 个☁️ */
<div class="☁️"></div>
</div>

.💭 .☁️ {
position: absolute;
width: 80px;
height: 80px;
background-color: #fff;
border-radius: 50%;
box-shadow: 0 0 6px 0 #fff;
}

星星 ✨

定义星星 ✨ 组件,我们可以通过 CSS radial-gradient 属性实现渐变色。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<div class="🌟">
<div class="✨"></div>
/** 总共 11 个✨ */
<div class="✨"></div>
</div>

.🌟 .✨ {
position: absolute;
top: 20px;
left: 60px;
width: 20px;
height: 20px;
background-image: radial-gradient(transparent 70%, #fff 100%);
background-size: 20px;
background-repeat: repeat;
background-position: 10px 10px;
}

主要就是通过 radial-gradient 创建一个图像,该图像由从原点辐射的渐进过渡组成,饼修改大小以及位置,最后针对每个星星 ✨ 单独设置大小。

动画效果

基础样式完成了,接下来就是加动画效果了。

这里的动效其实很简单,可以直接用 transition 就可以搞定了。不过通过 transform 进行偏移的时候发现动画略显生硬,所以最后 白云 ☁️ 和 .✨ 换了 animation 属性进行缓冲。

最终效果

img

完整代码

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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
<head>
<style>
html {
--width: clamp(200px, 45vmin, 500px);
}
body {
background-color: #d7deea;
}
input {
position: absolute;
top: 100px;
left: 50%;
width: 390px;
height: 146px;
z-index: 99;
opacity: 0;
transform: translateX(-50%);
cursor: pointer;
}
button {
margin-top: 100px;
margin-left: 50%;
width: 390px;
height: 146px;
transform: translateX(-50%);
box-shadow: calc(var(--width) * 0) calc(var(--width) * 0.02)
calc(var(--width) * 0.01) calc(var(--width) * -0.0025)
hsl(210 10% 100% / 0.95),
calc(var(--width) * 0) calc(var(--width) * -0.02)
calc(var(--width) * 0.01) calc(var(--width) * -0.0025)
hsl(210 10% 10% / 0.2),
calc(var(--width) * 0) calc(var(--width) * 0.02)
calc(var(--width) * 0.5) 0 hsl(210 10% 100% / 0.15);
border-radius: 146px;
border: 0;
padding: 12px;
position: relative;
overflow: hidden;
}
button::after {
content: "";
position: absolute;
inset: 0;
box-shadow: calc(var(--width) * 0) calc(var(--width) * -0.025)
calc(var(--width) * 0.025) 0 #17191c26 inset,
calc(var(--width) * 0) calc(var(--width) * 0.025)
calc(var(--width) * 0.025) 0 hsl(210 10% 10% / 0.65) inset;
border-radius: 100vh;
}
input:not(:checked) + button {
background-color: #3c86bc;
}
input:checked + button {
background-color: #1e223c;
}

button .🌞 {
position: absolute;
top: 13px;
width: 120px;
height: 120px;
overflow: hidden;
border-radius: 50%;
z-index: 10;
background-color: rgb(243, 203, 43);
box-shadow: 0 5px 5px 0 rgb(215, 222, 234) inset,
0 -5px 5px 0 rgb(175, 156, 80) inset, 0 5px 6px 0 rgb(109, 106, 98);
}

button .🌞 > .🌛 {
position: absolute;
left: 120px;
width: 120px;
height: 120px;
border-radius: 50%;
z-index: 10;
background-color: rgb(202, 207, 214);
box-shadow: 0 5px 5px 0 rgb(215, 222, 234) inset,
0 -5px 5px 0 rgb(131, 131, 131) inset, 0 5px 6px 0 rgb(109, 106, 98);
}

button .🌞 > .🌛 > .🌕 {
position: absolute;
top: 50px;
left: 20px;
width: 40px;
height: 40px;
overflow: hidden;
border-radius: 50%;
background-color: rgb(151, 157, 176);
box-shadow: 0 3px 1px 0 #7d7d7d inset, 0 -3px 1px 0 #ababab inset;
}

button .🌞 > .🌛 > .🌕:nth-child(2) {
top: 20px;
left: 50px;
width: 20px;
height: 20px;
}
button .🌞 > .🌛 > .🌕:nth-child(3) {
top: 72px;
left: 80px;
width: 22px;
height: 22px;
}
input:not(:checked) + button > .🌞 {
transform: translate(0, 0);
transition: all 400ms linear;
}
input:not(:checked):hover + button > .🌞 {
transform: translateX(20px);
}

input:checked + button > .🌞 {
transform: translate(246px, 0);
transition: all 400ms linear;
}

input:not(:checked) + button > .🌞 .🌛 {
transform: translate(0, 0);
transition: all 400ms linear;
}

input:checked:hover + button > .🌞 {
transform: translateX(226px);
}

input:checked + button > .🌞 .🌛 {
left: 0;
transform: translate(0, 0);
transition: all 400ms linear;
}

button > .⭕️ {
position: absolute;
height: 220px;
width: 220px;
top: -40px;
left: -40px;
border-radius: 50%;
transition: all 400ms linear;
}
button > .⭕️::before {
position: absolute;
content: "";
top: -50px;
left: -50px;
height: 320px;
width: 320px;
border-radius: 50%;
transition: all 400ms linear;
}
button > .⭕️::after {
position: absolute;
content: "";
top: -100px;
left: -100px;
height: 420px;
width: 420px;
border-radius: 50%;
transition: all 400ms linear;
}

input:not(:checked) + button > .⭕️ {
background: #ffffff0d;
}
input:not(:checked) + button > .⭕️::before {
background: #ffffff0d;
}
input:not(:checked) + button > .⭕️::after {
background: #ffffff0d;
}

input:checked + button > .⭕️ {
left: 210px;
background-color: rgba(120, 120, 120, 0.2);
}
input:checked + button > .⭕️::before {
background-color: rgba(120, 120, 120, 0.2);
}
input:checked + button > .⭕️::after {
background-color: rgba(120, 120, 120, 0.2);
}

input:not(:checked):hover + button > .⭕️ {
transform: translateX(5%);
}

input:not(:checked):hover + button > .⭕️::before {
transform: translateX(5%);
}

input:not(:checked):hover + button > .⭕️::after {
transform: translateX(10%);
}

input:checked:hover + button > .⭕️ {
transform: translateX(-5%);
}

input:checked:hover + button > .⭕️::before {
transform: translateX(-5%);
}

input:checked:hover + button > .⭕️::after {
transform: translateX(-10%);
}

.💭 {
filter: drop-shadow(-20px -20px 0 rgba(255, 255, 255, 0.4));
position: absolute;
top: 0;
right: 0;
}
.💭 .☁️ {
position: absolute;
width: 80px;
height: 80px;
background-color: #fff;
border-radius: 50%;
box-shadow: 0 0 6px 0 #fff;
}
.💭 .☁️:nth-child(1) {
top: 20px;
right: -20px;
}
.💭 .☁️:nth-child(2) {
top: 60px;
right: 0;
}
.💭 .☁️:nth-child(3) {
top: 100px;
right: 40px;
}
.💭 .☁️:nth-child(4) {
top: 120px;
right: 80px;
}
.💭 .☁️:nth-child(5) {
top: 110px;
right: 130px;
}
.💭 .☁️:nth-child(6) {
top: 100px;
right: 190px;
}
.💭 .☁️:nth-child(7) {
top: 110px;
right: 230px;
}
.💭 .☁️:nth-child(8) {
top: 120px;
right: 300px;
}

input:checked + button > .💭 {
animation: fadeOut 600ms linear 0s 1 forwards reverse;
}

input:not(:checked) + button > .💭 {
animation: fadeIn 600ms linear 0s 1 forwards reverse;
}
@keyframes fadeIn {
0% {
transform: translateY(0);
}
20% {
transform: translateY(-5px);
}
100% {
transform: translateY(240px);
filter: drop-shadow(-20px 120px 0 rgba(255, 255, 255, 0.4));
}
}
@keyframes fadeOut {
0% {
transform: translateY(140px);
}
40% {
transform: translateY(120px);
}
100% {
transform: translateY(0);
filter: drop-shadow(-20px 120px 0 rgba(255, 255, 255, 0.4));
}
}

.🌟 {
position: absolute;
top: 0;
transition: all 300ms linear;
}
.🌟 .✨ {
position: absolute;
top: 20px;
left: 60px;
width: 20px;
height: 20px;
background-image: radial-gradient(transparent 70%, #fff 100%);
background-size: 20px;
background-repeat: repeat;
background-position: 10px 10px;
transition: all 400ms linear;
animation: twinkle 4s -2s infinite;
}
.🌟 .✨:nth-child(2) {
top: 44px;
left: 34px;
transform: scale(0.6);
}
.🌟 .✨:nth-child(3) {
top: 56px;
left: 64px;
transform: scale(0.6);
}
.🌟 .✨:nth-child(4) {
top: 96px;
left: 40px;
transform: scale(0.3);
}
.🌟 .✨:nth-child(5) {
top: 86px;
left: 50px;
transform: scale(0.3);
}
.🌟 .✨:nth-child(6) {
top: 106px;
left: 70px;
transform: scale(0.4);
}
.🌟 .✨:nth-child(7) {
top: 36px;
left: 166px;
transform: scale(0.45);
}
.🌟 .✨:nth-child(8) {
top: 56px;
left: 156px;
transform: scale(0.3);
}
.🌟 .✨:nth-child(9) {
top: 40px;
left: 202px;
transform: scale(1.2);
}
.🌟 .✨:nth-child(10) {
top: 70px;
left: 192px;
transform: scale(0.4);
}
.🌟 .✨:nth-child(11) {
top: 90px;
left: 172px;
transform: scale(0.8);
}

input:not(:checked) + button > .🌟 {
animation: starFadeOut 600ms linear 0s 1 forwards;
}

input:checked + button > .🌟 {
animation: starFadeIn 600ms linear 0s 1 forwards;
}

@keyframes starFadeIn {
0% {
transform: translateY(-30px);
}
20% {
transform: translateY(10px);
opacity: 0.6;
}
80% {
opacity: 0.8;
}
100% {
transform: translateY(0);
opacity: 1;
}
}
@keyframes starFadeOut {
0% {
transform: translateY(0);
opacity: 1;
}
20% {
transform: translateY(-5px);
}
100% {
transform: translateY(-240px);
opacity: 0;
}
}

@keyframes twinkle {
0%, 40%, 60%, 100% {
transform: scale(1);
}
50% {
transform: scale(0);
}
}
</style>
</head>
<body>
<input type="checkbox" />
<button>
<div class="🌞">
<div class="🌛">
<div class="🌕"></div>
<div class="🌕"></div>
<div class="🌕"></div>
</div>
</div>
<div class="⭕️"></div>
<div class="💭">
<div class="☁️"></div>
<div class="☁️"></div>
<div class="☁️"></div>
<div class="☁️"></div>
<div class="☁️"></div>
<div class="☁️"></div>
<div class="☁️"></div>
<div class="☁️"></div>
</div>
<div class="🌟">
<div class="✨"></div>
<div class="✨"></div>
<div class="✨"></div>
<div class="✨"></div>
<div class="✨"></div>
<div class="✨"></div>
<div class="✨"></div>
<div class="✨"></div>
<div class="✨"></div>
<div class="✨"></div>
<div class="✨"></div>
</div>
</button>
</body>

彩蛋

在上面的功能之上加入了小怪兽 🐻 和小飞机 ✈️, 更多代码见:https://github.com/heiemooa/switch

img

这两个元素都有两个动画,比如怪兽在飞过开关区域的时候自身是在旋转的,就像在太空一样,小飞机飞过的时候也不是直线飞出的,在动画过程中 Y 轴增加了一定比例的变化。
这里有些不一样的时候上面的平移动画都是左右上下移动,可以看到这里是斜着平移的,说明在平移的时候两个方向的值都在发生变化,以下是小怪兽相关动画的代码,核心都是通过平移配合过渡实现动画效果。

1
2
3
4
5
6
7
8
9
10
11
12
.🐻 {
position: absolute;
bottom: -80px;
left: -50px;
width: 10%;
rotate: calc(360deg);
}

input:checked + button > .🐻 {
transform: translate(300px, -250px) rotate(-720deg);
transition: all 10s linear;
}