@applemusic-like-lyrics/react-full 0.2.0 → 0.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/amll-react-framework.cjs +3981 -0
- package/dist/amll-react-framework.cjs.map +1 -0
- package/dist/amll-react-framework.d.cts +602 -0
- package/dist/amll-react-framework.d.mts +562 -0
- package/dist/amll-react-framework.mjs +3864 -0
- package/dist/amll-react-framework.mjs.map +1 -0
- package/dist/chunk-xCsw59S1.mjs +11 -0
- package/dist/style.css +901 -0
- package/package.json +76 -83
- package/LICENSE +0 -661
- package/dist/amll-react-framework.css +0 -1023
- package/dist/amll-react-framework.js +0 -13755
- package/dist/amll-react-framework.js.map +0 -1
- package/dist/components/AudioFFTVisualizer/index.d.ts +0 -5
- package/dist/components/AudioFFTVisualizer/index.d.ts.map +0 -1
- package/dist/components/AudioQualityTag/index.d.ts +0 -7
- package/dist/components/AudioQualityTag/index.d.ts.map +0 -1
- package/dist/components/BouncingSlider/index.d.ts +0 -18
- package/dist/components/BouncingSlider/index.d.ts.map +0 -1
- package/dist/components/ControlThumb/index.d.ts +0 -5
- package/dist/components/ControlThumb/index.d.ts.map +0 -1
- package/dist/components/Cover/index.d.ts +0 -12
- package/dist/components/Cover/index.d.ts.map +0 -1
- package/dist/components/MediaButton/index.d.ts +0 -3
- package/dist/components/MediaButton/index.d.ts.map +0 -1
- package/dist/components/MenuButton/index.d.ts +0 -3
- package/dist/components/MenuButton/index.d.ts.map +0 -1
- package/dist/components/MusicInfo/index.d.ts +0 -10
- package/dist/components/MusicInfo/index.d.ts.map +0 -1
- package/dist/components/PrebuiltLyricPlayer/index.d.ts +0 -8
- package/dist/components/PrebuiltLyricPlayer/index.d.ts.map +0 -1
- package/dist/components/TextMarquee/index.d.ts +0 -3
- package/dist/components/TextMarquee/index.d.ts.map +0 -1
- package/dist/components/ToggleIconButton/index.d.ts +0 -12
- package/dist/components/ToggleIconButton/index.d.ts.map +0 -1
- package/dist/components/ToggleIconButton/prebuilt-enum.d.ts +0 -9
- package/dist/components/ToggleIconButton/prebuilt-enum.d.ts.map +0 -1
- package/dist/components/VolumeControlSlider/index.d.ts +0 -4
- package/dist/components/VolumeControlSlider/index.d.ts.map +0 -1
- package/dist/components/index.d.ts +0 -14
- package/dist/components/index.d.ts.map +0 -1
- package/dist/hook/useThrottle.d.ts +0 -11
- package/dist/hook/useThrottle.d.ts.map +0 -1
- package/dist/index.d.ts +0 -8
- package/dist/index.d.ts.map +0 -1
- package/dist/layout/auto.d.ts +0 -19
- package/dist/layout/auto.d.ts.map +0 -1
- package/dist/layout/horizontal.d.ts +0 -12
- package/dist/layout/horizontal.d.ts.map +0 -1
- package/dist/layout/index.d.ts +0 -4
- package/dist/layout/index.d.ts.map +0 -1
- package/dist/layout/vertical.d.ts +0 -12
- package/dist/layout/vertical.d.ts.map +0 -1
- package/dist/states/callbacks.d.ts +0 -93
- package/dist/states/callbacks.d.ts.map +0 -1
- package/dist/states/configAtoms.d.ts +0 -174
- package/dist/states/configAtoms.d.ts.map +0 -1
- package/dist/states/controlsAtoms.d.ts +0 -24
- package/dist/states/controlsAtoms.d.ts.map +0 -1
- package/dist/states/dataAtoms.d.ts +0 -144
- package/dist/states/dataAtoms.d.ts.map +0 -1
- package/dist/utils/duration.d.ts +0 -2
- package/dist/utils/duration.d.ts.map +0 -1
- package/dist/utils/index.d.ts +0 -2
- package/dist/utils/index.d.ts.map +0 -1
package/dist/style.css
ADDED
|
@@ -0,0 +1,901 @@
|
|
|
1
|
+
.nNqm_a_audioQualityTag {
|
|
2
|
+
overflow: hidden;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
@keyframes nNqm_a_dolby-glow {
|
|
6
|
+
0% {
|
|
7
|
+
opacity: 1;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
100% {
|
|
11
|
+
opacity: 0;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.nNqm_a_dolbyLogoGlow {
|
|
16
|
+
filter: blur(7px);
|
|
17
|
+
opacity: 1;
|
|
18
|
+
margin-top: 2.5px;
|
|
19
|
+
animation-name: nNqm_a_dolby-glow;
|
|
20
|
+
animation-duration: 3s;
|
|
21
|
+
animation-timing-function: ease-in-out;
|
|
22
|
+
animation-delay: 1s;
|
|
23
|
+
animation-fill-mode: forwards;
|
|
24
|
+
position: absolute;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.nNqm_a_clickable {
|
|
28
|
+
cursor: pointer;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.nNqm_a_commonTag {
|
|
32
|
+
color: #fff;
|
|
33
|
+
box-sizing: border-box;
|
|
34
|
+
align-items: center;
|
|
35
|
+
padding: 2px .52em 2px .1em;
|
|
36
|
+
display: flex;
|
|
37
|
+
position: relative;
|
|
38
|
+
|
|
39
|
+
&:before {
|
|
40
|
+
content: "";
|
|
41
|
+
opacity: .2;
|
|
42
|
+
border-image-source: url("audio_quality_tag.svg");
|
|
43
|
+
border-image-slice: 15 fill;
|
|
44
|
+
border-image-width: 8.5px;
|
|
45
|
+
width: 100%;
|
|
46
|
+
height: 100%;
|
|
47
|
+
position: absolute;
|
|
48
|
+
top: 0;
|
|
49
|
+
left: 0;
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.nNqm_a_commonTagText {
|
|
54
|
+
letter-spacing: .01809em;
|
|
55
|
+
white-space: nowrap;
|
|
56
|
+
font-family: -apple-system, BlinkMacSystemFont, SF Pro Text, Pingfang SC;
|
|
57
|
+
font-size: 11px;
|
|
58
|
+
font-weight: 500;
|
|
59
|
+
}
|
|
60
|
+
.ah9gFq_nowPlayingSlider {
|
|
61
|
+
touch-action: none;
|
|
62
|
+
cursor: pointer;
|
|
63
|
+
justify-content: stretch;
|
|
64
|
+
align-items: center;
|
|
65
|
+
min-height: 24px;
|
|
66
|
+
display: flex;
|
|
67
|
+
transform: translateZ(0);
|
|
68
|
+
|
|
69
|
+
& > .ah9gFq_inner {
|
|
70
|
+
background-color: #ffffff26;
|
|
71
|
+
flex: 1;
|
|
72
|
+
width: 100%;
|
|
73
|
+
height: 20px;
|
|
74
|
+
|
|
75
|
+
& > .ah9gFq_thumb {
|
|
76
|
+
opacity: .4;
|
|
77
|
+
transform-origin: 0;
|
|
78
|
+
background-color: #fff;
|
|
79
|
+
width: 100%;
|
|
80
|
+
height: 100%;
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
& .ah9gFq_nowPlayingSlider > svg {
|
|
85
|
+
opacity: .5;
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
.OWkF6W_controlThumb {
|
|
89
|
+
mix-blend-mode: plus-lighter;
|
|
90
|
+
justify-self: center;
|
|
91
|
+
width: 100%;
|
|
92
|
+
height: 100%;
|
|
93
|
+
|
|
94
|
+
& button {
|
|
95
|
+
touch-action: none;
|
|
96
|
+
mix-blend-mode: plus-lighter;
|
|
97
|
+
cursor: none;
|
|
98
|
+
background-color: #ffffff2d;
|
|
99
|
+
border: none;
|
|
100
|
+
border-radius: 4px;
|
|
101
|
+
padding: 0;
|
|
102
|
+
display: block;
|
|
103
|
+
position: absolute;
|
|
104
|
+
|
|
105
|
+
& div {
|
|
106
|
+
background-color: #000;
|
|
107
|
+
border-radius: 10px;
|
|
108
|
+
position: absolute;
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
.Q2PpKa_cover {
|
|
113
|
+
--base-box-shadow-v-0: #00000030;
|
|
114
|
+
--base-box-shadow-y-0: 1em;
|
|
115
|
+
--base-box-shadow-r-0: 1.2em;
|
|
116
|
+
aspect-ratio: 1;
|
|
117
|
+
object-fit: cover;
|
|
118
|
+
object-position: center;
|
|
119
|
+
width: 100%;
|
|
120
|
+
height: 100%;
|
|
121
|
+
filter: drop-shadow(var(--base-box-shadow-v-0) 0px var(--base-box-shadow-y-0)
|
|
122
|
+
var(--base-box-shadow-r-0));
|
|
123
|
+
background-position: center;
|
|
124
|
+
background-size: cover;
|
|
125
|
+
transition: background-image .5s linear, filter .5s, transform .5s cubic-bezier(.3, .2, .2, 1.4);
|
|
126
|
+
transform: scale(1);
|
|
127
|
+
|
|
128
|
+
&.Q2PpKa_musicPaused {
|
|
129
|
+
--base-box-shadow-v-0: #00000030;
|
|
130
|
+
--base-box-shadow-y-0: .8em;
|
|
131
|
+
--base-box-shadow-r-0: .8em;
|
|
132
|
+
transform: scale(var(--scale-level));
|
|
133
|
+
transition: background-image .5s linear, filter .5s, transform .6s cubic-bezier(.4, .2, .1, 1);
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
.Q2PpKa_coverInner {
|
|
138
|
+
background-color: #000;
|
|
139
|
+
background-position: center;
|
|
140
|
+
background-size: cover;
|
|
141
|
+
width: 100%;
|
|
142
|
+
height: 100%;
|
|
143
|
+
transition: background-image .5s linear;
|
|
144
|
+
}
|
|
145
|
+
@keyframes _7JvWRa_pressed-animation {
|
|
146
|
+
0% {
|
|
147
|
+
transform: scale(1);
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
20% {
|
|
151
|
+
transform: scale(.85);
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
50% {
|
|
155
|
+
transform: scale(1.1);
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
100% {
|
|
159
|
+
transform: scale(1);
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
._7JvWRa_mediaButton {
|
|
164
|
+
aspect-ratio: 1;
|
|
165
|
+
background-color: #fff0;
|
|
166
|
+
border: none;
|
|
167
|
+
border-radius: 50%;
|
|
168
|
+
justify-content: center;
|
|
169
|
+
align-items: center;
|
|
170
|
+
padding: 0;
|
|
171
|
+
transition: background-color .3s;
|
|
172
|
+
display: flex;
|
|
173
|
+
position: relative;
|
|
174
|
+
|
|
175
|
+
&:hover {
|
|
176
|
+
background-color: #fff2;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
&:active {
|
|
180
|
+
background-color: #fff2;
|
|
181
|
+
|
|
182
|
+
& * {
|
|
183
|
+
animation-name: none !important;
|
|
184
|
+
}
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
& > * {
|
|
188
|
+
transform-origin: center;
|
|
189
|
+
transition: transform .5s;
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
&._7JvWRa_animate > * {
|
|
193
|
+
animation-composition: accumulate;
|
|
194
|
+
animation: .7s _7JvWRa_pressed-animation;
|
|
195
|
+
}
|
|
196
|
+
}
|
|
197
|
+
.GOs7HW_menuButton {
|
|
198
|
+
aspect-ratio: 1;
|
|
199
|
+
border: none;
|
|
200
|
+
border-radius: 50%;
|
|
201
|
+
justify-content: center;
|
|
202
|
+
align-self: center;
|
|
203
|
+
align-items: center;
|
|
204
|
+
width: 3.5vh;
|
|
205
|
+
margin-left: 16px;
|
|
206
|
+
padding: 0;
|
|
207
|
+
display: flex;
|
|
208
|
+
position: relative;
|
|
209
|
+
background: #ffffff15 !important;
|
|
210
|
+
|
|
211
|
+
& svg {
|
|
212
|
+
color: #fff;
|
|
213
|
+
width: 72%;
|
|
214
|
+
height: auto;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
@media screen and (width <= 1000px) {
|
|
218
|
+
width: max(2em, min(5vw, 4vh));
|
|
219
|
+
}
|
|
220
|
+
}
|
|
221
|
+
.Dbqjoq_textMarquee {
|
|
222
|
+
min-width: 0;
|
|
223
|
+
overflow: hidden;
|
|
224
|
+
-webkit-mask-image: linear-gradient(to right, #000 95%, #0000);
|
|
225
|
+
|
|
226
|
+
&.Dbqjoq_animating {
|
|
227
|
+
-webkit-mask-image: linear-gradient(to left, #0000, #000 5% 95%, #0000);
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
& > * {
|
|
231
|
+
width: fit-content;
|
|
232
|
+
}
|
|
233
|
+
}
|
|
234
|
+
.XWzuDW_musicInfo {
|
|
235
|
+
color: #fff;
|
|
236
|
+
min-width: 0;
|
|
237
|
+
font-size: max(2vh, 1em);
|
|
238
|
+
display: flex;
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
.XWzuDW_info {
|
|
242
|
+
flex: 1;
|
|
243
|
+
min-width: 0;
|
|
244
|
+
line-height: 1.25em;
|
|
245
|
+
overflow: hidden;
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
.XWzuDW_name {
|
|
249
|
+
white-space: nowrap;
|
|
250
|
+
cursor: text;
|
|
251
|
+
user-select: text;
|
|
252
|
+
letter-spacing: .4px;
|
|
253
|
+
opacity: .9;
|
|
254
|
+
min-width: 0;
|
|
255
|
+
font-weight: 500;
|
|
256
|
+
mix-blend-mode: normal !important;
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
.XWzuDW_artists, .XWzuDW_album {
|
|
260
|
+
white-space: nowrap;
|
|
261
|
+
text-align: center;
|
|
262
|
+
opacity: .45;
|
|
263
|
+
letter-spacing: .4px;
|
|
264
|
+
font-weight: 400;
|
|
265
|
+
|
|
266
|
+
& a {
|
|
267
|
+
user-select: text;
|
|
268
|
+
text-decoration: none;
|
|
269
|
+
|
|
270
|
+
&:hover {
|
|
271
|
+
opacity: .75;
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
&:active {
|
|
275
|
+
opacity: .5;
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
&:after {
|
|
279
|
+
content: var(--applemusic-like-lyrics-music-artists-separator, ", ");
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
&:nth-last-child(2):after {
|
|
283
|
+
content: " & ";
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
&:last-child:after {
|
|
287
|
+
content: "";
|
|
288
|
+
}
|
|
289
|
+
}
|
|
290
|
+
}
|
|
291
|
+
._8f42YG_background {
|
|
292
|
+
width: 100%;
|
|
293
|
+
height: 100%;
|
|
294
|
+
transition: all .5s ease-in-out;
|
|
295
|
+
position: absolute;
|
|
296
|
+
left: 0%;
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
._8f42YG_background:after {
|
|
300
|
+
content: "";
|
|
301
|
+
background-image: linear-gradient(#0000 60%, #0000001a 100%);
|
|
302
|
+
width: 100vw;
|
|
303
|
+
height: 100vh;
|
|
304
|
+
position: absolute;
|
|
305
|
+
top: 0;
|
|
306
|
+
left: 0;
|
|
307
|
+
}
|
|
308
|
+
.-DaA0W_horizontalLayout {
|
|
309
|
+
--hide-lyric-left: 61.1111%;
|
|
310
|
+
grid-template-rows: [-DaA0W_drag-area] minmax(30px, .45fr)[-DaA0W_thumb] auto[-DaA0W_cover] auto[-DaA0W_music-info] 3fr[-DaA0W_buttom-controls] 0fr .3fr;
|
|
311
|
+
grid-template-columns: [-DaA0W_info-side] .45fr[-DaA0W_player-side] .55fr[-DaA0W_side-controls] 0fr;
|
|
312
|
+
gap: 8px;
|
|
313
|
+
width: 100%;
|
|
314
|
+
height: 100%;
|
|
315
|
+
transition: all .5s ease-in-out;
|
|
316
|
+
display: grid;
|
|
317
|
+
position: relative;
|
|
318
|
+
left: 0%;
|
|
319
|
+
|
|
320
|
+
& .-DaA0W_thumb, & .-DaA0W_cover, & .-DaA0W_controls {
|
|
321
|
+
transition: left .5s cubic-bezier(.5, 0, .5, 1);
|
|
322
|
+
left: 0%;
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
&.-DaA0W_hideLyric {
|
|
326
|
+
& .-DaA0W_lyric {
|
|
327
|
+
opacity: 0;
|
|
328
|
+
pointer-events: none;
|
|
329
|
+
transition: opacity .25s cubic-bezier(.5, 0, .5, 1), transform .5s cubic-bezier(.5, 0, .5, 1);
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
& .-DaA0W_thumb, & .-DaA0W_cover, & .-DaA0W_controls {
|
|
333
|
+
left: var(--hide-lyric-left);
|
|
334
|
+
}
|
|
335
|
+
}
|
|
336
|
+
|
|
337
|
+
--horizontal-layout-max-width: min(50vh, 38vw);
|
|
338
|
+
|
|
339
|
+
@media screen and (height <= 1000px) {
|
|
340
|
+
--horizontal-layout-max-width: min(45vh, 38vw);
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
@media screen and (height <= 768px) {
|
|
344
|
+
grid-template-rows: [-DaA0W_drag-area] minmax(30px, .45fr)[-DaA0W_thumb] auto[-DaA0W_cover] auto[-DaA0W_music-info] 3fr[-DaA0W_buttom-controls] 0fr .2fr;
|
|
345
|
+
gap: 2px;
|
|
346
|
+
font-size: .8em;
|
|
347
|
+
}
|
|
348
|
+
}
|
|
349
|
+
|
|
350
|
+
.-DaA0W_thumb {
|
|
351
|
+
will-change: transform;
|
|
352
|
+
mix-blend-mode: plus-lighter;
|
|
353
|
+
grid-area: -DaA0W_thumb / -DaA0W_info-side;
|
|
354
|
+
justify-self: center;
|
|
355
|
+
margin: 2vh;
|
|
356
|
+
position: relative;
|
|
357
|
+
}
|
|
358
|
+
|
|
359
|
+
.-DaA0W_cover {
|
|
360
|
+
aspect-ratio: 1;
|
|
361
|
+
width: var(--horizontal-layout-max-width);
|
|
362
|
+
height: var(--horizontal-layout-max-width);
|
|
363
|
+
grid-area: -DaA0W_cover / -DaA0W_info-side;
|
|
364
|
+
place-self: center;
|
|
365
|
+
position: relative;
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
.-DaA0W_controls {
|
|
369
|
+
will-change: transform;
|
|
370
|
+
mix-blend-mode: plus-lighter;
|
|
371
|
+
min-width: 0;
|
|
372
|
+
min-height: 0;
|
|
373
|
+
width: var(--horizontal-layout-max-width);
|
|
374
|
+
flex-direction: column;
|
|
375
|
+
grid-area: -DaA0W_music-info / -DaA0W_info-side;
|
|
376
|
+
justify-content: space-between;
|
|
377
|
+
justify-self: center;
|
|
378
|
+
margin-top: calc(1.75em - 8px);
|
|
379
|
+
display: flex;
|
|
380
|
+
position: relative;
|
|
381
|
+
}
|
|
382
|
+
|
|
383
|
+
.-DaA0W_lyric {
|
|
384
|
+
box-sizing: border-box;
|
|
385
|
+
mix-blend-mode: plus-lighter;
|
|
386
|
+
contain: paint;
|
|
387
|
+
grid-area: 2 / -DaA0W_player-side / 5;
|
|
388
|
+
width: 100%;
|
|
389
|
+
height: 100%;
|
|
390
|
+
padding-right: 15%;
|
|
391
|
+
transition: opacity .5s cubic-bezier(.5, 0, .5, 1) .25s;
|
|
392
|
+
mask-image: linear-gradient(#0000, #000 10% 90%, #0000);
|
|
393
|
+
|
|
394
|
+
@media screen and (width <= 1600px), (height <= 1000px) {
|
|
395
|
+
padding-right: 8%;
|
|
396
|
+
}
|
|
397
|
+
}
|
|
398
|
+
|
|
399
|
+
.-DaA0W_bottomControls {
|
|
400
|
+
mix-blend-mode: plus-lighter;
|
|
401
|
+
flex-direction: row-reverse;
|
|
402
|
+
grid-area: -DaA0W_buttom-controls / 1 / -DaA0W_buttom-controls / 4;
|
|
403
|
+
gap: 4em;
|
|
404
|
+
padding-left: 4em;
|
|
405
|
+
padding-right: 4em;
|
|
406
|
+
display: flex;
|
|
407
|
+
|
|
408
|
+
@media screen and (width <= 1600px), (height <= 1000px) {
|
|
409
|
+
gap: 2em;
|
|
410
|
+
padding-left: 2em;
|
|
411
|
+
padding-right: 2em;
|
|
412
|
+
}
|
|
413
|
+
}
|
|
414
|
+
.SqBoeq_verticalLayout {
|
|
415
|
+
grid-template-rows: [SqBoeq_drag-area] 30px[SqBoeq_thumb] 30px[SqBoeq_main-view] 1fr[SqBoeq_control] 0fr;
|
|
416
|
+
gap: 2px;
|
|
417
|
+
width: 100%;
|
|
418
|
+
min-width: 0;
|
|
419
|
+
height: 100%;
|
|
420
|
+
min-height: 0;
|
|
421
|
+
display: grid;
|
|
422
|
+
position: relative;
|
|
423
|
+
overflow: hidden;
|
|
424
|
+
}
|
|
425
|
+
|
|
426
|
+
.SqBoeq_thumb {
|
|
427
|
+
z-index: 1;
|
|
428
|
+
mix-blend-mode: plus-lighter;
|
|
429
|
+
grid-row: SqBoeq_thumb;
|
|
430
|
+
justify-self: center;
|
|
431
|
+
|
|
432
|
+
@media screen and (width <= 768px) {
|
|
433
|
+
margin: 4px;
|
|
434
|
+
}
|
|
435
|
+
}
|
|
436
|
+
|
|
437
|
+
.SqBoeq_coverFrame {
|
|
438
|
+
width: 0;
|
|
439
|
+
height: 0;
|
|
440
|
+
position: absolute;
|
|
441
|
+
|
|
442
|
+
&.SqBoeq_immerseCover {
|
|
443
|
+
mask-image: linear-gradient(#000 0% 70%, #0000 100%);
|
|
444
|
+
}
|
|
445
|
+
}
|
|
446
|
+
|
|
447
|
+
.SqBoeq_cover {
|
|
448
|
+
aspect-ratio: 1;
|
|
449
|
+
z-index: 1;
|
|
450
|
+
position: absolute;
|
|
451
|
+
top: 0;
|
|
452
|
+
left: 0;
|
|
453
|
+
}
|
|
454
|
+
|
|
455
|
+
.SqBoeq_lyricLayout {
|
|
456
|
+
mix-blend-mode: plus-lighter;
|
|
457
|
+
grid-area: SqBoeq_main-view / 1 / SqBoeq_main-view / 2;
|
|
458
|
+
grid-template-rows: 1em[SqBoeq_controls] 0fr[SqBoeq_lyric-view] 1fr[SqBoeq_bottom-controls] 0fr;
|
|
459
|
+
grid-template-columns: 3em[SqBoeq_cover-side] 0fr[SqBoeq_info-side] 1fr 3em;
|
|
460
|
+
display: grid;
|
|
461
|
+
|
|
462
|
+
@media screen and (width <= 480px) {
|
|
463
|
+
grid-template-columns: 20px[SqBoeq_cover-side] 0fr[SqBoeq_info-side] 1fr 20px;
|
|
464
|
+
}
|
|
465
|
+
}
|
|
466
|
+
|
|
467
|
+
.SqBoeq_noLyricLayout {
|
|
468
|
+
pointer-events: none;
|
|
469
|
+
grid-area: SqBoeq_main-view / 1 / SqBoeq_main-view / 2;
|
|
470
|
+
grid-template-rows: 1em[SqBoeq_cover-view] 1fr[SqBoeq_lyric-view] 0fr;
|
|
471
|
+
grid-template-columns: 3em[SqBoeq_main-view] 1fr 3em;
|
|
472
|
+
display: grid;
|
|
473
|
+
overflow-y: hidden;
|
|
474
|
+
|
|
475
|
+
@media screen and (width <= 480px) {
|
|
476
|
+
grid-template-columns: 2em[SqBoeq_main-view] 1fr 2em;
|
|
477
|
+
}
|
|
478
|
+
}
|
|
479
|
+
|
|
480
|
+
.SqBoeq_phonySmallCover {
|
|
481
|
+
aspect-ratio: 1;
|
|
482
|
+
opacity: 0;
|
|
483
|
+
pointer-events: none;
|
|
484
|
+
grid-area: SqBoeq_controls / SqBoeq_cover-side;
|
|
485
|
+
place-self: center;
|
|
486
|
+
width: 6em;
|
|
487
|
+
|
|
488
|
+
@media screen and (width <= 480px) {
|
|
489
|
+
width: 4.5em;
|
|
490
|
+
}
|
|
491
|
+
}
|
|
492
|
+
|
|
493
|
+
.SqBoeq_phonyBigCover {
|
|
494
|
+
opacity: 0;
|
|
495
|
+
pointer-events: none;
|
|
496
|
+
grid-area: SqBoeq_cover-view / 2 / SqBoeq_cover-view / 3;
|
|
497
|
+
}
|
|
498
|
+
|
|
499
|
+
.SqBoeq_smallControls {
|
|
500
|
+
z-index: 1;
|
|
501
|
+
mix-blend-mode: plus-lighter;
|
|
502
|
+
grid-area: SqBoeq_controls / SqBoeq_info-side;
|
|
503
|
+
align-self: center;
|
|
504
|
+
min-width: 0;
|
|
505
|
+
height: fit-content;
|
|
506
|
+
padding-left: 1em;
|
|
507
|
+
transition: opacity .25s .25s;
|
|
508
|
+
overflow: visible;
|
|
509
|
+
}
|
|
510
|
+
|
|
511
|
+
.SqBoeq_lyric {
|
|
512
|
+
opacity: 1;
|
|
513
|
+
mix-blend-mode: plus-lighter;
|
|
514
|
+
box-sizing: content-box;
|
|
515
|
+
grid-area: SqBoeq_lyric-view / 1 / SqBoeq_lyric-view / 5;
|
|
516
|
+
min-height: 0;
|
|
517
|
+
transition: opacity .5s .5s;
|
|
518
|
+
mask-image: linear-gradient(#0000 0%, #000 10% 100%);
|
|
519
|
+
}
|
|
520
|
+
|
|
521
|
+
.SqBoeq_bigControls {
|
|
522
|
+
opacity: 0;
|
|
523
|
+
mix-blend-mode: plus-lighter;
|
|
524
|
+
z-index: 2;
|
|
525
|
+
grid-area: SqBoeq_lyric-view / 2 / SqBoeq_lyric-view / 3;
|
|
526
|
+
min-width: 0;
|
|
527
|
+
transition: opacity .5s;
|
|
528
|
+
}
|
|
529
|
+
|
|
530
|
+
.SqBoeq_hideLyric {
|
|
531
|
+
& .SqBoeq_smallControls {
|
|
532
|
+
opacity: 0;
|
|
533
|
+
pointer-events: none;
|
|
534
|
+
transition: opacity .5s;
|
|
535
|
+
}
|
|
536
|
+
|
|
537
|
+
& .SqBoeq_noLyricLayout {
|
|
538
|
+
pointer-events: auto;
|
|
539
|
+
}
|
|
540
|
+
|
|
541
|
+
& .SqBoeq_lyric {
|
|
542
|
+
opacity: 0;
|
|
543
|
+
pointer-events: none;
|
|
544
|
+
transition: opacity .5s;
|
|
545
|
+
}
|
|
546
|
+
|
|
547
|
+
& .SqBoeq_bigControls {
|
|
548
|
+
opacity: 1;
|
|
549
|
+
}
|
|
550
|
+
}
|
|
551
|
+
|
|
552
|
+
.SqBoeq_background {
|
|
553
|
+
width: 100%;
|
|
554
|
+
height: 100%;
|
|
555
|
+
position: absolute;
|
|
556
|
+
}
|
|
557
|
+
._6-mjea_toggleIconButton {
|
|
558
|
+
aspect-ratio: 1;
|
|
559
|
+
color: currentColor;
|
|
560
|
+
opacity: .45;
|
|
561
|
+
background-color: #0000;
|
|
562
|
+
border: none;
|
|
563
|
+
justify-content: center;
|
|
564
|
+
align-items: center;
|
|
565
|
+
width: 4em;
|
|
566
|
+
height: 4em;
|
|
567
|
+
display: flex;
|
|
568
|
+
|
|
569
|
+
& svg {
|
|
570
|
+
aspect-ratio: 1;
|
|
571
|
+
width: 4em;
|
|
572
|
+
height: 4em;
|
|
573
|
+
}
|
|
574
|
+
|
|
575
|
+
@media screen and (width <= 1600px), (height <= 1000px) {
|
|
576
|
+
width: 3em;
|
|
577
|
+
height: 3em;
|
|
578
|
+
|
|
579
|
+
& svg {
|
|
580
|
+
width: 3em;
|
|
581
|
+
height: 3em;
|
|
582
|
+
}
|
|
583
|
+
}
|
|
584
|
+
}
|
|
585
|
+
@keyframes LJEMWq_speaker-bounce-part1 {
|
|
586
|
+
to {
|
|
587
|
+
transform: scale(1.2);
|
|
588
|
+
}
|
|
589
|
+
}
|
|
590
|
+
|
|
591
|
+
@keyframes LJEMWq_speaker-bounce-part2 {
|
|
592
|
+
to {
|
|
593
|
+
transform: scale(.85);
|
|
594
|
+
}
|
|
595
|
+
}
|
|
596
|
+
|
|
597
|
+
@keyframes LJEMWq_speaker-bounce-part3 {
|
|
598
|
+
to {
|
|
599
|
+
transform: scale(1);
|
|
600
|
+
}
|
|
601
|
+
}
|
|
602
|
+
|
|
603
|
+
.LJEMWq_volumeControl {
|
|
604
|
+
flex-direction: row;
|
|
605
|
+
align-items: center;
|
|
606
|
+
margin-left: -12px;
|
|
607
|
+
margin-right: -8px;
|
|
608
|
+
display: flex;
|
|
609
|
+
}
|
|
610
|
+
|
|
611
|
+
.LJEMWq_volumeControl > svg {
|
|
612
|
+
opacity: .5;
|
|
613
|
+
}
|
|
614
|
+
|
|
615
|
+
.LJEMWq_speakerAnimate .speaker-bounce-1 {
|
|
616
|
+
transform-origin: center;
|
|
617
|
+
animation: .2s ease-in-out forwards LJEMWq_speaker-bounce-part1, .2s ease-in-out .2s forwards LJEMWq_speaker-bounce-part2, .2s ease-in-out .4s forwards LJEMWq_speaker-bounce-part3;
|
|
618
|
+
}
|
|
619
|
+
|
|
620
|
+
.LJEMWq_speakerAnimate .speaker-bounce-2 {
|
|
621
|
+
transform-origin: center;
|
|
622
|
+
animation: .2s ease-in-out 50ms forwards LJEMWq_speaker-bounce-part1, .2s ease-in-out .25s forwards LJEMWq_speaker-bounce-part2, .2s ease-in-out .45s forwards LJEMWq_speaker-bounce-part3;
|
|
623
|
+
}
|
|
624
|
+
|
|
625
|
+
.LJEMWq_speakerAnimate .speaker-bounce-3 {
|
|
626
|
+
transform-origin: center;
|
|
627
|
+
animation: .2s ease-in-out .1s forwards LJEMWq_speaker-bounce-part1, .2s ease-in-out .3s forwards LJEMWq_speaker-bounce-part2, .2s ease-in-out .5s forwards LJEMWq_speaker-bounce-part3;
|
|
628
|
+
}
|
|
629
|
+
|
|
630
|
+
.LJEMWq_speakerAnimate .speaker-bounce-4 {
|
|
631
|
+
transform-origin: center;
|
|
632
|
+
animation: .2s ease-in-out .15s forwards LJEMWq_speaker-bounce-part1, .2s ease-in-out .35s forwards LJEMWq_speaker-bounce-part2, .2s ease-in-out .55s forwards LJEMWq_speaker-bounce-part3;
|
|
633
|
+
}
|
|
634
|
+
.amll-forward-left-arrow {
|
|
635
|
+
animation: .6s cubic-bezier(.4, 1.51, .4, 1) forwards amll-forward-left-end;
|
|
636
|
+
}
|
|
637
|
+
|
|
638
|
+
.amll-forward-right-arrow {
|
|
639
|
+
transform-origin: 81%;
|
|
640
|
+
animation: .2s ease-out forwards amll-forward-right-end;
|
|
641
|
+
}
|
|
642
|
+
|
|
643
|
+
.amll-forward-left-standby {
|
|
644
|
+
transform-origin: 22%;
|
|
645
|
+
animation: .6s cubic-bezier(.4, 1.51, .4, 1) forwards amll-forward-left-new;
|
|
646
|
+
}
|
|
647
|
+
|
|
648
|
+
@keyframes amll-forward-left-end {
|
|
649
|
+
100% {
|
|
650
|
+
transform: translateX(40px);
|
|
651
|
+
}
|
|
652
|
+
}
|
|
653
|
+
|
|
654
|
+
@keyframes amll-forward-right-end {
|
|
655
|
+
100% {
|
|
656
|
+
opacity: 0;
|
|
657
|
+
transform: scale(0);
|
|
658
|
+
}
|
|
659
|
+
}
|
|
660
|
+
|
|
661
|
+
@keyframes amll-forward-left-new {
|
|
662
|
+
0% {
|
|
663
|
+
opacity: 0;
|
|
664
|
+
transform: scale(0) translateX(-15px);
|
|
665
|
+
}
|
|
666
|
+
|
|
667
|
+
100% {
|
|
668
|
+
opacity: 1;
|
|
669
|
+
transform: scale(1) translateX(0);
|
|
670
|
+
}
|
|
671
|
+
}
|
|
672
|
+
|
|
673
|
+
.amll-rewind-right-arrow {
|
|
674
|
+
animation: .6s cubic-bezier(.4, 1.51, .4, 1) forwards amll-rewind-right-end;
|
|
675
|
+
}
|
|
676
|
+
|
|
677
|
+
.amll-rewind-left-arrow {
|
|
678
|
+
transform-origin: 19%;
|
|
679
|
+
animation: .2s ease-out forwards amll-rewind-left-end;
|
|
680
|
+
}
|
|
681
|
+
|
|
682
|
+
.amll-rewind-right-standby {
|
|
683
|
+
transform-origin: 78%;
|
|
684
|
+
animation: .6s cubic-bezier(.4, 1.51, .4, 1) forwards amll-rewind-right-new;
|
|
685
|
+
}
|
|
686
|
+
|
|
687
|
+
@keyframes amll-rewind-right-end {
|
|
688
|
+
100% {
|
|
689
|
+
transform: translateX(-40px);
|
|
690
|
+
}
|
|
691
|
+
}
|
|
692
|
+
|
|
693
|
+
@keyframes amll-rewind-left-end {
|
|
694
|
+
100% {
|
|
695
|
+
opacity: 0;
|
|
696
|
+
transform: scale(0);
|
|
697
|
+
}
|
|
698
|
+
}
|
|
699
|
+
|
|
700
|
+
@keyframes amll-rewind-right-new {
|
|
701
|
+
0% {
|
|
702
|
+
opacity: 0;
|
|
703
|
+
transform: scale(0) translateX(15px);
|
|
704
|
+
}
|
|
705
|
+
|
|
706
|
+
100% {
|
|
707
|
+
opacity: 1;
|
|
708
|
+
transform: scale(1) translateX(0);
|
|
709
|
+
}
|
|
710
|
+
}
|
|
711
|
+
.UjzbJG_horizontalControls {
|
|
712
|
+
min-width: 0;
|
|
713
|
+
overflow: hidden;
|
|
714
|
+
|
|
715
|
+
@media screen and (height <= 1000px) {
|
|
716
|
+
padding: 0 0 !important;
|
|
717
|
+
}
|
|
718
|
+
|
|
719
|
+
@media screen and (height >= 1000px) {
|
|
720
|
+
padding-top: 2vh;
|
|
721
|
+
padding-bottom: 1vh;
|
|
722
|
+
}
|
|
723
|
+
}
|
|
724
|
+
|
|
725
|
+
.UjzbJG_controls, .UjzbJG_bigControls {
|
|
726
|
+
justify-content: space-evenly;
|
|
727
|
+
align-items: center;
|
|
728
|
+
display: flex;
|
|
729
|
+
}
|
|
730
|
+
|
|
731
|
+
.UjzbJG_controls {
|
|
732
|
+
justify-content: space-between;
|
|
733
|
+
}
|
|
734
|
+
|
|
735
|
+
.UjzbJG_bigControls {
|
|
736
|
+
padding: 2vh min(2vw, 2vh) 0;
|
|
737
|
+
}
|
|
738
|
+
|
|
739
|
+
.UjzbJG_songMediaButton, .UjzbJG_songMediaPlayButton {
|
|
740
|
+
aspect-ratio: 1;
|
|
741
|
+
width: 18%;
|
|
742
|
+
}
|
|
743
|
+
|
|
744
|
+
.UjzbJG_songMediaButton > svg {
|
|
745
|
+
transition: scale .3s;
|
|
746
|
+
scale: 3;
|
|
747
|
+
|
|
748
|
+
@media screen and (height <= 1080px) {
|
|
749
|
+
scale: 2;
|
|
750
|
+
}
|
|
751
|
+
|
|
752
|
+
@media screen and (height <= 768px) {
|
|
753
|
+
scale: 1.5;
|
|
754
|
+
}
|
|
755
|
+
|
|
756
|
+
@media screen and (height <= 512px) {
|
|
757
|
+
scale: 1;
|
|
758
|
+
}
|
|
759
|
+
|
|
760
|
+
@media screen and (width <= 480px) {
|
|
761
|
+
scale: .5;
|
|
762
|
+
}
|
|
763
|
+
}
|
|
764
|
+
|
|
765
|
+
.UjzbJG_songMediaPlayButton > svg {
|
|
766
|
+
transition: scale .3s;
|
|
767
|
+
scale: 2;
|
|
768
|
+
|
|
769
|
+
@media screen and (height <= 1080px) {
|
|
770
|
+
scale: 1.1;
|
|
771
|
+
}
|
|
772
|
+
|
|
773
|
+
@media screen and (height <= 768px) {
|
|
774
|
+
scale: .8;
|
|
775
|
+
}
|
|
776
|
+
|
|
777
|
+
@media screen and (height <= 512px) {
|
|
778
|
+
scale: .5;
|
|
779
|
+
}
|
|
780
|
+
|
|
781
|
+
@media screen and (width <= 480px) {
|
|
782
|
+
scale: .5;
|
|
783
|
+
}
|
|
784
|
+
}
|
|
785
|
+
|
|
786
|
+
.UjzbJG_qualityTag {
|
|
787
|
+
transition: scale .3s;
|
|
788
|
+
scale: 1.4;
|
|
789
|
+
|
|
790
|
+
@media screen and (height <= 768px) {
|
|
791
|
+
scale: .5;
|
|
792
|
+
}
|
|
793
|
+
|
|
794
|
+
@media screen and (height <= 1080px) {
|
|
795
|
+
scale: 1;
|
|
796
|
+
}
|
|
797
|
+
}
|
|
798
|
+
|
|
799
|
+
.UjzbJG_progressBarLabels {
|
|
800
|
+
opacity: .5;
|
|
801
|
+
justify-content: space-between;
|
|
802
|
+
align-items: center;
|
|
803
|
+
margin-top: 4px;
|
|
804
|
+
font-size: max(1.2vh, .8em);
|
|
805
|
+
font-weight: 500;
|
|
806
|
+
display: flex;
|
|
807
|
+
|
|
808
|
+
@media screen and (height <= 768px) {
|
|
809
|
+
margin-top: 0;
|
|
810
|
+
}
|
|
811
|
+
|
|
812
|
+
& > * {
|
|
813
|
+
flex: 1;
|
|
814
|
+
}
|
|
815
|
+
|
|
816
|
+
& > :nth-child(2) {
|
|
817
|
+
flex: 0;
|
|
818
|
+
}
|
|
819
|
+
|
|
820
|
+
& > :last-child {
|
|
821
|
+
text-align: right;
|
|
822
|
+
}
|
|
823
|
+
}
|
|
824
|
+
|
|
825
|
+
.UjzbJG_bigControls > button {
|
|
826
|
+
width: 10vh !important;
|
|
827
|
+
height: 10vh !important;
|
|
828
|
+
|
|
829
|
+
&:nth-child(2) > svg {
|
|
830
|
+
scale: 1.75;
|
|
831
|
+
|
|
832
|
+
@media screen and (width <= 480px) {
|
|
833
|
+
scale: 1.25;
|
|
834
|
+
}
|
|
835
|
+
}
|
|
836
|
+
|
|
837
|
+
& > svg {
|
|
838
|
+
scale: 2.5;
|
|
839
|
+
|
|
840
|
+
@media screen and (width <= 480px) {
|
|
841
|
+
scale: 2;
|
|
842
|
+
}
|
|
843
|
+
}
|
|
844
|
+
}
|
|
845
|
+
|
|
846
|
+
.UjzbJG_autoLyricLayout {
|
|
847
|
+
--info-timing-func-in: cubic-bezier(.5, 0, .75, 0);
|
|
848
|
+
--info-timing-func-out: cubic-bezier(.25, 1, .5, 1);
|
|
849
|
+
}
|
|
850
|
+
|
|
851
|
+
.UjzbJG_bigMusicInfo {
|
|
852
|
+
transition: transform .3s var(--info-timing-func-in),
|
|
853
|
+
opacity .3s var(--info-timing-func-in);
|
|
854
|
+
opacity: 0;
|
|
855
|
+
min-width: 0;
|
|
856
|
+
padding: 2em 0;
|
|
857
|
+
overflow-x: hidden;
|
|
858
|
+
transform: translateY(-25vh);
|
|
859
|
+
|
|
860
|
+
@media screen and (height <= 768px) {
|
|
861
|
+
padding: 1em 0;
|
|
862
|
+
}
|
|
863
|
+
|
|
864
|
+
@media screen and (height <= 512px) {
|
|
865
|
+
padding: .25em 0;
|
|
866
|
+
}
|
|
867
|
+
}
|
|
868
|
+
|
|
869
|
+
.UjzbJG_bigMusicInfo.UjzbJG_hideLyric {
|
|
870
|
+
transition: transform .5s .3s var(--info-timing-func-out),
|
|
871
|
+
opacity .5s .3s var(--info-timing-func-out);
|
|
872
|
+
opacity: 1;
|
|
873
|
+
transform: translateY(0);
|
|
874
|
+
}
|
|
875
|
+
|
|
876
|
+
.UjzbJG_smallMusicInfo {
|
|
877
|
+
transition: transform .5s .3s var(--info-timing-func-out),
|
|
878
|
+
opacity .3s .3s var(--info-timing-func-out);
|
|
879
|
+
opacity: 1;
|
|
880
|
+
transform: translateY(0);
|
|
881
|
+
font-size: clamp(1em, 2vh, 1.25em) !important;
|
|
882
|
+
}
|
|
883
|
+
|
|
884
|
+
.UjzbJG_smallMusicInfo.UjzbJG_hideLyric {
|
|
885
|
+
transition: transform .3s var(--info-timing-func-in),
|
|
886
|
+
opacity .3s var(--info-timing-func-in);
|
|
887
|
+
opacity: 0;
|
|
888
|
+
transform: translateY(25vh);
|
|
889
|
+
}
|
|
890
|
+
|
|
891
|
+
.UjzbJG_bigVolumeControl {
|
|
892
|
+
padding-bottom: 4em;
|
|
893
|
+
|
|
894
|
+
@media screen and (height <= 768px) {
|
|
895
|
+
padding-bottom: 2em;
|
|
896
|
+
}
|
|
897
|
+
|
|
898
|
+
@media screen and (height <= 512px) {
|
|
899
|
+
padding-bottom: 1em;
|
|
900
|
+
}
|
|
901
|
+
}
|