-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
986 lines (952 loc) · 33.8 KB
/
test.html
File metadata and controls
986 lines (952 loc) · 33.8 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
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
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>LoveLive!BD 情报</title>
<style>
body {
font-family: "微软雅黑", sans-serif;
margin: 0;
padding: 0;
background-color: #f9f9f9;
display: flex;
flex-direction: row;
overflow-x: hidden;
}
#sidebar {
position: fixed;
top: 0;
left: 0;
width: 200px;
background: rgba(240, 240, 240, 0.6);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
color: #000;
border-right: 1px solid #ddd;
border-bottom-right-radius: 12px;
padding: 80px 0 10px 0;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
z-index: 1000;
}
#sidebar ul {
list-style: none;
padding: 0;
margin: 0;
}
#sidebar ul li a {
display: block;
padding: 12px 20px;
color: #000;
text-decoration: none;
font-weight: 500;
transition: background-color 0.2s;
}
#sidebar ul li a:hover {
background-color: rgba(0, 0, 0, 0.06);
border-left: 4px solid #0078d4;
padding-left: 16px;
}
#sidebarToggle {
position: fixed;
top: 12px;
left: 12px;
width: 40px;
height: 40px;
background: pink;
backdrop-filter: blur(10px);
border-radius: 50%;
cursor: pointer;
display: none;
align-items: center;
justify-content: center;
z-index: 1100;
}
#sidebarToggle svg {
fill: black;
width: 24px;
height: 24px;
}
main {
flex-grow: 1;
padding: 20px;
margin-left: 220px;
margin-top: 80px;
box-sizing: border-box;
max-width: 960px;
}
h1 {
font-size: 1.5em;
margin-bottom: 0.5em;
text-align: center;
}
input[type="text"] {
width: 100%;
max-width: 240px;
padding: 10px;
font-size: 1em;
margin: 0 auto 1em auto;
display: block;
border: 1px solid #ccc;
border-radius: 6px;
}
.table-container {
overflow-x: auto;
}
table {
width: 100%;
border-collapse: separate; /* 为圆角服务 */
border-spacing: 0;
border-radius: 8px;
overflow: hidden;
background-color: #fff;
box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
th, td {
padding: 12px 16px;
border-bottom: 1px solid #eee;
text-align: left;
font-size: 0.95em;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
max-width: 300px;
}
td[title] {
cursor: help;
}
th {
background-color: #ff1493; /* Muse 粉 */
color: white;
border-top-left-radius: 6px;
border-top-right-radius: 6px;
}
tr:hover {
background-color: #fdf4f9;
}
/* 根据第三列组合名调整整行颜色 */
/*tr.aqours {*/
/* color: #00bfff; */
/*}*/
/*tr.μ's {*/
/* color: #ff1493; */
/*}*/
/*tr.虹ヶ咲学園スクールアイドル同好会 {*/
/* color: #fcc800; */
/*}*/
/*tr.Liella {*/
/* color: #9932cc; */
/*}*/
/*tr.蓮ノ空女学院スクールアイドルクラブ {*/
/* color: #ffc0cb; */
/*}*/
/* 根据组合英文类名调整整行颜色 */
tr.aqours {
color: #00bfff; /* 天蓝 */
}
tr.muse {
color: #ff1493; /* 深粉 */
}
tr.nijigasaki {
color: #fcc800; /* 黄橙 */
}
tr.liella {
color: #9932cc; /* 深紫 */
}
tr.hasunosora {
color: #ffc0cb; /* 浅粉 */
}
@media (max-width: 768px) {
#sidebar {
transform: translateX(-220px);
transition: transform 0.3s ease;
}
#sidebar.active {
transform: translateX(0);
}
#sidebarToggle {
display: flex;
}
main {
margin-left: 0;
margin-top: 20px;
padding: 16px;
max-width: 100%;
}
}
@media (min-width: 769px) {
#sidebarToggle {
display: none;
}
}
</style>
</head>
<body>
<div id="sidebarToggle" title="菜单切换" role="button" tabindex="0">
<svg viewBox="0 0 24 24" aria-hidden="true">
<path d="M3 6h18M3 12h18M3 18h18" stroke="black" stroke-width="2" stroke-linecap="round"/>
</svg>
</div>
<nav id="sidebar-container">
<!-- 侧边栏通过 fetch 加载 -->
</nav>
<main>
<h1>LoveLive!BD・Live 一览</h1>
<input type="text" id="searchInput" placeholder="现共计138 件,可在此搜索">
<div class="table-container">
<table id="dataTable">
<thead>
<tr>
<th>标题</th>
<th>日期</th>
<th>组合</th>
</tr>
</thead>
<tbody>
<tr>
<td>ラブライブ!サンシャイン!! Aqours Finale LoveLive! ~永久stage~ Blu-ray Memorial BOX</td>
<td>2026年02月11日</td>
<td>Aqours</td>
</tr>
<tr>
<td>フラワーミュージックチャレンジ</td>
<td>2025年10月29日</td>
<td>虹ヶ咲学園スクールアイドル同好会</td>
</tr>
<tr>
<td>LoveLive! Series Asia Tour 2024 ~みんなで叶える物語~</td>
<td>2025年10月01日</td>
<td>μ's、Aqours、Liella!、蓮ノ空、虹ヶ咲</td>
</tr>
<tr>
<td>ラブライブ!蓮ノ空女学院スクールアイドルクラブ 3rd Live Tour TRI TRI UNITY!!!</td>
<td>2025年08月27日</td>
<td>蓮ノ空女学院スクールアイドルクラブ</td>
</tr>
<tr>
<td>MEMORIES</td>
<td>2025年06月30日</td>
<td>Aqours</td>
</tr>
<tr>
<td>ラブライブ!虹ヶ咲学園スクールアイドル同好会 7th Live! NEW TOKIMEKI LAND</td>
<td>2025年06月18日</td>
<td>虹ヶ咲学園スクールアイドル同好会</td>
</tr>
<tr>
<td>「ラブライブ!スーパースター!!」TVアニメ3期 Blu-ray 第6巻</td>
<td>2025年05月28日</td>
<td>Liella!</td>
</tr>
<tr>
<td>ラブライブ!蓮ノ空女学院スクールアイドルクラブ 2nd Live Tour ~Blooming with ○○○~</td>
<td>2025年04月23日</td>
<td>蓮ノ空女学院スクールアイドルクラブ</td>
</tr>
<tr>
<td>「ラブライブ!スーパースター!!」TVアニメ3期 Blu-ray 第5巻</td>
<td>2025年04月23日</td>
<td>Liella!</td>
</tr>
<tr>
<td>ラブライブ!スーパースター!! Liella! ユニットライブ&ファンミーティングツアー 心・技・体!極上大冒険!!~最終章~</td>
<td>2025年04月16日</td>
<td>Liella!</td>
</tr>
<tr>
<td>「ラブライブ!スーパースター!!」TVアニメ3期 Blu-ray 第4巻</td>
<td>2025年03月26日</td>
<td>Liella!</td>
</tr>
<tr>
<td>ラブライブ!サンシャイン!! Aqoursと発見!ぬまづの歴史アドベンチャー!!</td>
<td>2025年02月26日</td>
<td>Aqours</td>
</tr>
<tr>
<td>「ラブライブ!スーパースター!!」TVアニメ3期 Blu-ray 第3巻</td>
<td>2025年02月26日</td>
<td>Liella!</td>
</tr>
<tr>
<td>「ラブライブ!スクールアイドルミュージカル the DRAMA」</td>
<td>2025年02月05日</td>
<td>学园偶像音乐剧</td>
</tr>
<tr>
<td>映画『ラブライブ!虹ヶ咲学園スクールアイドル同好会 完結編 第1章』</td>
<td>2025年01月29日</td>
<td>虹ヶ咲学園スクールアイドル同好会</td>
</tr>
<tr>
<td>「ラブライブ!スーパースター!!」TVアニメ3期 Blu-ray 第2巻</td>
<td>2025年01月29日</td>
<td>Liella!</td>
</tr>
<tr>
<td>「ラブライブ!スーパースター!!」TVアニメ3期 Blu-ray 第1巻</td>
<td>2024年12月25日</td>
<td>Liella!</td>
</tr>
<tr>
<td>劇場総集編 幻日のヨハネ –SUNSHINE in the MIRROR- Blu-ray</td>
<td>2024年12月25日</td>
<td>Aqours</td>
</tr>
<tr>
<td>幻日のヨハネ -The Story of the Sound of Heart-</td>
<td>2024年11月27日</td>
<td>Aqours</td>
</tr>
<tr>
<td>LoveLive! Series Presents ユニット甲子園 2024</td>
<td>2024年11月20日</td>
<td>Aqours、Liella!、蓮ノ空、虹ヶ咲</td>
</tr>
<tr>
<td>ラブライブ!蓮ノ空女学院スクールアイドルクラブ 1st Live Tour ~RUN!CAN!FUN!~</td>
<td>2024年10月16日</td>
<td>蓮ノ空女学院スクールアイドルクラブ</td>
</tr>
<tr>
<td>ラブライブ!スーパースター!! Liella! 5th LoveLive! ~Twinkle Triangle~</td>
<td>2024年09月18日</td>
<td>Liella!</td>
</tr>
<tr>
<td>「異次元フェス アイドルマスター★♥ラブライブ!歌合戦」Blu-ray</td>
<td>2024年08月07日</td>
<td>Aqours、Liella!、蓮ノ空、虹ヶ咲、学园偶像音乐剧</td>
</tr>
<tr>
<td>ラブライブ!虹ヶ咲学園スクールアイドル同好会 6th Live! I love You ⇆ You love Me</td>
<td>2024年07月31日</td>
<td>虹ヶ咲学園スクールアイドル同好会</td>
</tr>
<tr>
<td>TVアニメ「にじよん あにめーしょん2」Blu-ray BOX</td>
<td>2024年06月26日</td>
<td>虹ヶ咲学園スクールアイドル同好会</td>
</tr>
<tr>
<td>ラブライブ!スーパースター!! Liella! 4th LoveLive! Tour ~brand new Sparkle~</td>
<td>2024年05月15日</td>
<td>Liella!</td>
</tr>
<tr>
<td>「幻日のヨハネ -SUNSHINE in the MIRROR-」TVアニメ Blu-ray 第7巻</td>
<td>2024年03月27日</td>
<td>Aqours</td>
</tr>
<tr>
<td>「幻日のヨハネ -SUNSHINE in the MIRROR-」TVアニメ Blu-ray 第6巻</td>
<td>2024年02月28日</td>
<td>Aqours</td>
</tr>
<tr>
<td>「幻日のヨハネ -SUNSHINE in the MIRROR-」TVアニメ Blu-ray 第5巻</td>
<td>2024年01月26日</td>
<td>Aqours</td>
</tr>
<tr>
<td>「幻日のヨハネ -SUNSHINE in the MIRROR-」TVアニメ Blu-ray 第4巻</td>
<td>2023年12月22日</td>
<td>Aqours</td>
</tr>
<tr>
<td>ラブライブ!サンシャイン!! Aqours EXTRA LoveLive! 2023 ~It's a 無限大☆WORLD~</td>
<td>2023年12月13日</td>
<td>Aqours</td>
</tr>
<tr>
<td>「幻日のヨハネ -SUNSHINE in the MIRROR-」TVアニメ Blu-ray 第3巻</td>
<td>2023年11月22日</td>
<td>Aqours</td>
</tr>
<tr>
<td>「幻日のヨハネ -SUNSHINE in the MIRROR-」TVアニメ Blu-ray 第2巻</td>
<td>2023年10月27日</td>
<td>Aqours</td>
</tr>
<tr>
<td>ラブライブ!虹ヶ咲学園スクールアイドル同好会 UNIT LIVE!</td>
<td>2023年10月18日</td>
<td>虹ヶ咲学園スクールアイドル同好会</td>
</tr>
<tr>
<td>ラブライブ!スーパースター!! Liella! 3rd LoveLive! Tour ~WE WILL!!~</td>
<td>2023年10月04日</td>
<td>Liella!</td>
</tr>
<tr>
<td>「幻日のヨハネ -SUNSHINE in the MIRROR-」TVアニメ Blu-ray 第1巻</td>
<td>2023年09月27日</td>
<td>Aqours</td>
</tr>
<tr>
<td>ラブライブ!虹ヶ咲学園スクールアイドル同好会 NEXT SKY</td>
<td>2023年08月30日</td>
<td>虹ヶ咲学園スクールアイドル同好会</td>
</tr>
<tr>
<td>MTV Unplugged Presents: LoveLive! Superstar!! Liella!</td>
<td>2023年06月28日</td>
<td>Liella!</td>
</tr>
<tr>
<td>TVアニメ「にじよん あにめーしょん」Blu-ray BOX</td>
<td>2023年03月29日</td>
<td>虹ヶ咲学園スクールアイドル同好会</td>
</tr>
<tr>
<td>ラブライブ!虹ヶ咲学園スクールアイドル同好会 5th Live! 虹が咲く場所</td>
<td>2023年03月22日</td>
<td>虹ヶ咲学園スクールアイドル同好会</td>
</tr>
<tr>
<td>「ラブライブ!スーパースター!!」TVアニメ2期 Blu-ray 第6巻</td>
<td>2023年02月24日</td>
<td>Liella!</td>
</tr>
<tr>
<td>ラブライブ!サンシャイン!! Aqours 6th LoveLive! ~KU-RU-KU-RU Rock 'n' Roll TOUR~ <WINDY STAGE></td>
<td>2023年02月15日</td>
<td>Aqours</td>
</tr>
<tr>
<td>「ラブライブ!スーパースター!!」TVアニメ2期 Blu-ray 第5巻</td>
<td>2023年01月27日</td>
<td>Liella!</td>
</tr>
<tr>
<td>ラブライブ!スーパースター!! Liella! 2nd LoveLive! ~What a Wonderful Dream!!~</td>
<td>2023年01月18日</td>
<td>Liella!</td>
</tr>
<tr>
<td>「ラブライブ!スーパースター!!」TVアニメ2期 Blu-ray 第4巻</td>
<td>2022年12月23日</td>
<td>Liella!</td>
</tr>
<tr>
<td>「ラブライブ!虹ヶ咲学園スクールアイドル同好会」TVアニメ2期 Blu-ray 第7巻</td>
<td>2022年12月23日</td>
<td>虹ヶ咲学園スクールアイドル同好会</td>
</tr>
<tr>
<td>ラブライブ!サンシャイン!! AZALEA 2nd LoveLive! ~Amazing Travel DNA Reboot~</td>
<td>2022年12月21日</td>
<td>Aqours</td>
</tr>
<tr>
<td>ラブライブ!サンシャイン!! Aqours 6th LoveLive! ~KU-RU-KU-RU Rock 'n' Roll TOUR~ <SUNNY STAGE></td>
<td>2022年12月14日</td>
<td>Aqours</td>
</tr>
<tr>
<td>ラブライブ!サンシャイン!! Guilty Kiss 2nd LoveLive! ~Return To Love ♡ Kiss Kiss Kiss~</td>
<td>2022年12月07日</td>
<td>Aqours</td>
</tr>
<tr>
<td>「ラブライブ!スーパースター!!」TVアニメ2期 Blu-ray 第3巻</td>
<td>2022年11月25日</td>
<td>Liella!</td>
</tr>
<tr>
<td>「ラブライブ!虹ヶ咲学園スクールアイドル同好会」TVアニメ2期 Blu-ray 第6巻</td>
<td>2022年11月25日</td>
<td>虹ヶ咲学園スクールアイドル同好会</td>
</tr>
<tr>
<td>ラブライブ!サンシャイン!! CYaRon!2nd LoveLive! ~大革命☆Wake Up Kingdom~</td>
<td>2022年11月16日</td>
<td>Aqours</td>
</tr>
<tr>
<td>ラブライブ!サンシャイン!! Aqours 6th LoveLive! ~KU-RU-KU-RU Rock 'n' Roll TOUR~ <OCEAN STAGE></td>
<td>2022年11月02日</td>
<td>Aqours</td>
</tr>
<tr>
<td>「ラブライブ!スーパースター!!」TVアニメ2期 Blu-ray 第2巻</td>
<td>2022年10月28日</td>
<td>Liella!</td>
</tr>
<tr>
<td>「ラブライブ!虹ヶ咲学園スクールアイドル同好会」TVアニメ2期 Blu-ray 第5巻</td>
<td>2022年10月28日</td>
<td>虹ヶ咲学園スクールアイドル同好会</td>
</tr>
<tr>
<td>「ラブライブ!スーパースター!!」TVアニメ2期 Blu-ray 第1巻</td>
<td>2022年09月28日</td>
<td>Liella!</td>
</tr>
<tr>
<td>「ラブライブ!虹ヶ咲学園スクールアイドル同好会」TVアニメ2期 Blu-ray 第4巻</td>
<td>2022年09月28日</td>
<td>虹ヶ咲学園スクールアイドル同好会</td>
</tr>
<tr>
<td>LoveLive! Series Presents COUNTDOWN LoveLive! 2021→2022 ~LIVE with a smile!~</td>
<td>2022年09月14日</td>
<td>Aqours、Liella!、虹ヶ咲</td>
</tr>
<tr>
<td>「ラブライブ!虹ヶ咲学園スクールアイドル同好会」TVアニメ2期 Blu-ray 第3巻</td>
<td>2022年08月26日</td>
<td>虹ヶ咲学園スクールアイドル同好会</td>
</tr>
<tr>
<td>Aqours EXTRA LoveLive! ~DREAMY CONCERT 2021~</td>
<td>2022年08月17日</td>
<td>Aqours</td>
</tr>
<tr>
<td>「ラブライブ!虹ヶ咲学園スクールアイドル同好会」TVアニメ2期 Blu-ray 第2巻</td>
<td>2022年07月27日</td>
<td>虹ヶ咲学園スクールアイドル同好会</td>
</tr>
<tr>
<td>ラブライブ!虹ヶ咲学園スクールアイドル同好会 4th Live! ~Love the Life We Live~</td>
<td>2022年07月27日</td>
<td>虹ヶ咲学園スクールアイドル同好会</td>
</tr>
<tr>
<td>ラブライブ!スーパースター!! Liella! First LoveLive! Tour ~Starlines~</td>
<td>2022年07月06日</td>
<td>Liella!</td>
</tr>
<tr>
<td>「ラブライブ!虹ヶ咲学園スクールアイドル同好会」TVアニメ2期 Blu-ray 第1巻</td>
<td>2022年06月24日</td>
<td>虹ヶ咲学園スクールアイドル同好会</td>
</tr>
<tr>
<td>ラブライブ!サンシャイン!! AZALEA First LOVELIVE! ~In The Dark /*秘密の物語*/~</td>
<td>2022年06月01日</td>
<td>Aqours</td>
</tr>
<tr>
<td>ラブライブ!虹ヶ咲学園スクールアイドル同好会ファンディスク ~ときめき活動日誌~</td>
<td>2022年03月29日</td>
<td>虹ヶ咲学園スクールアイドル同好会</td>
</tr>
<tr>
<td>ラブライブ!サンシャイン!! Blu-ray BOX</td>
<td>2022年03月29日</td>
<td>Aqours</td>
</tr>
<tr>
<td>TVアニメ「ラブライブ!スーパースター!!」Blu-ray 第6巻</td>
<td>2022年02月25日</td>
<td>Liella!</td>
</tr>
<tr>
<td>ラブライブ!サンシャイン!! Aqours World LoveLive!</td>
<td>2022年02月16日</td>
<td>Aqours</td>
</tr>
<tr>
<td>TVアニメ「ラブライブ!スーパースター!!」Blu-ray 第5巻</td>
<td>2022年01月26日</td>
<td>Liella!</td>
</tr>
<tr>
<td>ラブライブ!虹ヶ咲学園スクールアイドル同好会 3rd Live! School Idol Festival ~夢の始まり~</td>
<td>2022年01月12日</td>
<td>虹ヶ咲学園スクールアイドル同好会</td>
</tr>
<tr>
<td>ラブライブ!サンシャイン!! Special MV Collection ~Aqours カラフルパーティー!!~</td>
<td>2021年12月24日</td>
<td>Aqours</td>
</tr>
<tr>
<td>TVアニメ「ラブライブ!スーパースター!!」Blu-ray 第4巻</td>
<td>2021年12月24日</td>
<td>Liella!</td>
</tr>
<tr>
<td>TVアニメ「ラブライブ!スーパースター!!」Blu-ray 第3巻</td>
<td>2021年11月26日</td>
<td>Liella!</td>
</tr>
<tr>
<td>ラブライブ!虹ヶ咲学園スクールアイドル同好会 校内シャッフルフェスティバル</td>
<td>2021年11月03日</td>
<td>虹ヶ咲学園スクールアイドル同好会</td>
</tr>
<tr>
<td>TVアニメ「ラブライブ!スーパースター!!」Blu-ray 第2巻</td>
<td>2021年10月27日</td>
<td>Liella!</td>
</tr>
<tr>
<td>TVアニメ「ラブライブ!スーパースター!!」Blu-ray 第1巻</td>
<td>2021年09月28日</td>
<td>Liella!</td>
</tr>
<tr>
<td>ラブライブ!サンシャイン!! CYaRon! First LOVELIVE! ~Braveheart Coaster~</td>
<td>2021年08月25日</td>
<td>Aqours</td>
</tr>
<tr>
<td>ラブライブ!サンシャイン!! Guilty Kiss First LOVELIVE! ~New Romantic Sailors~</td>
<td>2021年08月25日</td>
<td>Aqours</td>
</tr>
<tr>
<td>ラブライブ!サンシャイン!! Aqours ONLINE LoveLive!</td>
<td>2021年07月07日</td>
<td>Aqours</td>
</tr>
<tr>
<td>TVアニメ「ラブライブ!虹ヶ咲学園スクールアイドル同好会」Blu-ray 第7巻</td>
<td>2021年06月25日</td>
<td>虹ヶ咲学園スクールアイドル同好会</td>
</tr>
<tr>
<td>ラブライブ!サンシャイン!! Saint Snow 1st GIG ~Welcome to Dazzling White Town~</td>
<td>2021年06月09日</td>
<td>Aqours</td>
</tr>
<tr>
<td>TVアニメ「ラブライブ!虹ヶ咲学園スクールアイドル同好会」Blu-ray 第6巻</td>
<td>2021年05月26日</td>
<td>虹ヶ咲学園スクールアイドル同好会</td>
</tr>
<tr>
<td>TVアニメ「ラブライブ!虹ヶ咲学園スクールアイドル同好会」Blu-ray 第5巻</td>
<td>2021年04月27日</td>
<td>虹ヶ咲学園スクールアイドル同好会</td>
</tr>
<tr>
<td>TVアニメ「ラブライブ!虹ヶ咲学園スクールアイドル同好会」Blu-ray 第4巻</td>
<td>2021年03月26日</td>
<td>虹ヶ咲学園スクールアイドル同好会</td>
</tr>
<tr>
<td>ラブライブ!虹ヶ咲学園スクールアイドル同好会 2nd Live!</td>
<td>2021年03月24日</td>
<td>虹ヶ咲学園スクールアイドル同好会</td>
</tr>
<tr>
<td>TVアニメ「ラブライブ!虹ヶ咲学園スクールアイドル同好会」Blu-ray 第3巻</td>
<td>2021年02月25日</td>
<td>虹ヶ咲学園スクールアイドル同好会</td>
</tr>
<tr>
<td>TVアニメ「ラブライブ!虹ヶ咲学園スクールアイドル同好会」Blu-ray 第2巻</td>
<td>2021年01月27日</td>
<td>虹ヶ咲学園スクールアイドル同好会</td>
</tr>
<tr>
<td>TVアニメ「ラブライブ!虹ヶ咲学園スクールアイドル同好会」Blu-ray 第1巻</td>
<td>2020年12月24日</td>
<td>虹ヶ咲学園スクールアイドル同好会</td>
</tr>
<tr>
<td>LoveLive! Series 9th Anniversary ラブライブ!フェス</td>
<td>2020年09月09日</td>
<td>μ's、Aqours、虹ヶ咲</td>
</tr>
<tr>
<td>ラブライブ!虹ヶ咲学園スクールアイドル同好会 First Live “with You”</td>
<td>2020年08月05日</td>
<td>虹ヶ咲学園スクールアイドル同好会</td>
</tr>
<tr>
<td>ラブライブ!サンシャイン!!ファンディスク ~Aqours Memories~</td>
<td>2020年03月19日</td>
<td>Aqours</td>
</tr>
<tr>
<td>ラブライブ!サンシャイン!! Aqours 5th LoveLive! ~Next SPARKLING!!〜</td>
<td>2020年01月08日</td>
<td>Aqours</td>
</tr>
<tr>
<td>ラブライブ! 9th Anniversary Blu-ray BOX</td>
<td>2019年10月25日</td>
<td>μ's</td>
</tr>
<tr>
<td>ラブライブ!虹ヶ咲学園スクールアイドル同好会 Memorial Disc ~Blooming Rainbow~</td>
<td>2019年08月21日</td>
<td>虹ヶ咲学園スクールアイドル同好会</td>
</tr>
<tr>
<td>ラブライブ!サンシャイン!!The School Idol Movie Over the Rainbow</td>
<td>2019年07月26日</td>
<td>Aqours</td>
</tr>
<tr>
<td>ラブライブ!サンシャイン!! Aqours 4th LoveLive! ~Sailing to the Sunshine~</td>
<td>2019年05月29日</td>
<td>Aqours</td>
</tr>
<tr>
<td>ラブライブ!サンシャイン!! Aqours 3rd LoveLive! Tour ~WONDERFUL STORIES~</td>
<td>2019年03月06日</td>
<td>Aqours</td>
</tr>
<tr>
<td>Saint Snow PRESENTS LOVELIVE! SUNSHINE!! HAKODATE UNIT CARNIVAL</td>
<td>2018年10月24日</td>
<td>Aqours</td>
</tr>
<tr>
<td>「ラブライブ!サンシャイン!!」TVアニメ2期 Blu-ray 第7巻</td>
<td>2018年06月22日</td>
<td>Aqours</td>
</tr>
<tr>
<td>「ラブライブ!サンシャイン!!」TVアニメ2期 Blu-ray 第6巻</td>
<td>2018年05月25日</td>
<td>Aqours</td>
</tr>
<tr>
<td>ラブライブ!サンシャイン!! Aqours 2nd LoveLive! HAPPY PARTY TRAIN TOUR</td>
<td>2018年04月25日</td>
<td>Aqours</td>
</tr>
<tr>
<td>「ラブライブ!サンシャイン!!」TVアニメ2期 Blu-ray 第5巻</td>
<td>2018年04月24日</td>
<td>Aqours</td>
</tr>
<tr>
<td>「ラブライブ!サンシャイン!!」TVアニメ2期 Blu-ray 第4巻</td>
<td>2018年03月23日</td>
<td>Aqours</td>
</tr>
<tr>
<td>「ラブライブ!サンシャイン!!」TVアニメ2期 Blu-ray 第3巻</td>
<td>2018年02月23日</td>
<td>Aqours</td>
</tr>
<tr>
<td>「ラブライブ!サンシャイン!!」TVアニメ2期 Blu-ray 第2巻</td>
<td>2018年01月26日</td>
<td>Aqours</td>
</tr>
<tr>
<td>「ラブライブ!サンシャイン!!」TVアニメ2期 Blu-ray 第1巻</td>
<td>2017年12月22日</td>
<td>Aqours</td>
</tr>
<tr>
<td>ラブライブ!サンシャイン!! Aqours First LoveLive! ~Step! ZERO to ONE~</td>
<td>2017年09月27日</td>
<td>Aqours</td>
</tr>
<tr>
<td>「ラブライブ!サンシャイン!!」TVアニメ1期 Blu-ray 第7巻</td>
<td>2017年03月24日</td>
<td>Aqours</td>
</tr>
<tr>
<td>「ラブライブ!サンシャイン!!」TVアニメ1期 Blu-ray 第6巻</td>
<td>2017年02月24日</td>
<td>Aqours</td>
</tr>
<tr>
<td>「ラブライブ!サンシャイン!!」TVアニメ1期 Blu-ray 第5巻</td>
<td>2017年01月27日</td>
<td>Aqours</td>
</tr>
<tr>
<td>「ラブライブ!サンシャイン!!」TVアニメ1期 Blu-ray 第4巻</td>
<td>2016年12月22日</td>
<td>Aqours</td>
</tr>
<tr>
<td>「ラブライブ!サンシャイン!!」TVアニメ1期 Blu-ray 第3巻</td>
<td>2016年11月25日</td>
<td>Aqours</td>
</tr>
<tr>
<td>「ラブライブ!サンシャイン!!」TVアニメ1期 Blu-ray 第2巻</td>
<td>2016年10月26日</td>
<td>Aqours</td>
</tr>
<tr>
<td>ラブライブ! μ's Final LoveLive! 〜μ'sic Forever♪♪♪♪♪♪♪♪♪~</td>
<td>2016年09月28日</td>
<td>μ's</td>
</tr>
<tr>
<td>「ラブライブ!サンシャイン!!」TVアニメ1期 Blu-ray 第1巻</td>
<td>2016年09月27日</td>
<td>Aqours</td>
</tr>
<tr>
<td>ラブライブ!μ's Live Collection</td>
<td>2016年08月26日</td>
<td>μ's</td>
</tr>
<tr>
<td>ラブライブ!The School Idol Movie</td>
<td>2015年12月15日</td>
<td>μ's</td>
</tr>
<tr>
<td>ラブライブ! μ's Go→Go! LoveLive! 2015 ~Dream Sensation!~</td>
<td>2015年09月30日</td>
<td>μ's</td>
</tr>
<tr>
<td>「ラブライブ!」TVアニメ2期 Blu-ray 第7巻</td>
<td>2014年12月25日</td>
<td>μ's</td>
</tr>
<tr>
<td>「ラブライブ!」TVアニメ2期 Blu-ray 第6巻</td>
<td>2014年11月21日</td>
<td>μ's</td>
</tr>
<tr>
<td>「ラブライブ!」TVアニメ2期 Blu-ray 第5巻</td>
<td>2014年10月29日</td>
<td>μ's</td>
</tr>
<tr>
<td>「ラブライブ!」TVアニメ2期 Blu-ray 第4巻</td>
<td>2014年09月24日</td>
<td>μ's</td>
</tr>
<tr>
<td>「ラブライブ!」TVアニメ2期 Blu-ray 第3巻</td>
<td>2014年08月27日</td>
<td>μ's</td>
</tr>
<tr>
<td>「ラブライブ!」TVアニメ2期 Blu-ray 第2巻</td>
<td>2014年07月25日</td>
<td>μ's</td>
</tr>
<tr>
<td>ラブライブ! μ's→NEXT LoveLive! 2014 ~ENDLESS PARADE~</td>
<td>2014年07月23日</td>
<td>μ's</td>
</tr>
<tr>
<td>「ラブライブ!」TVアニメ2期 Blu-ray 第1巻</td>
<td>2014年06月20日</td>
<td>μ's</td>
</tr>
<tr>
<td>ラブライブ!〜国立音ノ木坂学院案内〜</td>
<td>2013年12月25日</td>
<td>μ's</td>
</tr>
<tr>
<td>ラブライブ! μ's 3rd Anniversary LoveLive!</td>
<td>2013年12月25日</td>
<td>μ's</td>
</tr>
<tr>
<td>「ラブライブ!」Blu-ray 第7巻</td>
<td>2013年09月25日</td>
<td>μ's</td>
</tr>
<tr>
<td>「ラブライブ!」Blu-ray 第6巻</td>
<td>2013年08月28日</td>
<td>μ's</td>
</tr>
<tr>
<td>「ラブライブ!」Blu-ray 第5巻</td>
<td>2013年07月26日</td>
<td>μ's</td>
</tr>
<tr>
<td>「ラブライブ!」Blu-ray 第4巻</td>
<td>2013年06月21日</td>
<td>μ's</td>
</tr>
<tr>
<td>「ラブライブ!」Blu-ray 第3巻</td>
<td>2013年05月28日</td>
<td>μ's</td>
</tr>
<tr>
<td>「ラブライブ!」Blu-ray 第2巻</td>
<td>2013年04月24日</td>
<td>μ's</td>
</tr>
<tr>
<td>「ラブライブ!」Blu-ray 第1巻</td>
<td>2013年03月22日</td>
<td>μ's</td>
</tr>
<tr>
<td>ラブライブ! μ's First LoveLive!</td>
<td>2012年11月21日</td>
<td>μ's</td>
</tr>
</tbody>
</table>
</div>
</main>
<script>
// 搜索过滤
const input = document.getElementById('searchInput');
input.addEventListener('keyup', function () {
const filter = input.value.toLowerCase();
const rows = document.querySelectorAll('#dataTable tbody tr');
rows.forEach(row => {
const text = row.innerText.toLowerCase();
row.style.display = text.includes(filter) ? '' : 'none';
});
});
// fetch 侧边栏内容并初始化侧栏相关事件和表格着色
fetch("sidebarResume.html")
.then(res => res.text())
.then(html => {
document.getElementById("sidebar-container").innerHTML = html;
// 侧边栏切换按钮和侧栏元素
const sidebarToggle = document.getElementById("sidebarToggle");
const sidebar = document.getElementById("sidebar");
if (sidebarToggle && sidebar) {
sidebarToggle.addEventListener("click", () => {
sidebar.classList.toggle("active");
});
sidebarToggle.addEventListener("keydown", (e) => {
if (e.key === "Enter" || e.key === " ") {
e.preventDefault();
sidebar.classList.toggle("active");
}
});
}
// 表格加颜色,判断第三列文本
const rows = document.querySelectorAll('#dataTable tbody tr');
rows.forEach(row => {
const group = row.cells[2].textContent.trim();
// 多组合情况下不加颜色
if (group.includes('、') || group.includes(',') || group.includes(',') || group.includes('・')) {
return; // 多团队,不处理
}
if (group.includes('Aqours')) {
row.classList.add('aqours');
} else if (group.includes("μ's") || group.includes("μs")) {
row.classList.add('muse');
} else if (group.includes('虹')) {
row.classList.add('nijigasaki');
} else if (group.includes('Liella')) {
row.classList.add('liella');
} else if (group.includes('蓮')) {
row.classList.add('hasunosora');
}
});
// 给每个表格单元格加 title
document.querySelectorAll('#dataTable td').forEach(cell => {
cell.setAttribute('title', cell.textContent.trim());
});
});
</script>
</body>
</html>