forked from 0verfl0w767/Lecture-Timetable
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtimetable.html
More file actions
767 lines (762 loc) · 27.6 KB
/
timetable.html
File metadata and controls
767 lines (762 loc) · 27.6 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
<!doctype html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<title>삼육대학교 시간표 마법사</title>
<meta
name="viewport"
content="user-scalable=no,initial-scale=1.0,maximum-scale=1.0,minimum-scale=1.0,width=device-width"
/>
<meta name="robots" content="index,nofollow" />
<meta
name="keywords"
content="삼육대학교, 시간표, 마법사, 학기 계획, 시간표 만들기"
/>
<meta
name="description"
content="효율적인 학기 계획을 위한 나만의 맞춤형 시간표를 만들어 보세요."
/>
<meta property="og:type" content="website" />
<meta property="og:title" content="삼육대학교 시간표 마법사" />
<meta
property="og:image"
content="https://www.syu.kr/assets/img/banner.png"
/>
<meta property="og:url" content="https://lecture.syu.kr/timetable" />
<meta
property="og:description"
content="효율적인 학기 계획을 위한 나만의 맞춤형 시간표를 만들어 보세요."
/>
<link rel="icon" href="https://www.syu.kr/favicon/favicon.ico" />
<link rel="stylesheet" href="timetable.css" />
<link
rel="preload"
href="https://cdn.jsdelivr.net/gh/moonspam/NanumSquare@2.0/NanumSquareEB.woff2"
as="font"
type="font/woff2"
crossorigin="anonymous"
/>
<link
rel="preload"
href="https://cdn.jsdelivr.net/gh/moonspam/NanumSquare@2.0/NanumSquareB.woff2"
as="font"
type="font/woff2"
crossorigin="anonymous"
/>
<link
rel="preload"
href="https://cdn.jsdelivr.net/gh/moonspam/NanumSquare@2.0/NanumSquareR.woff2"
as="font"
type="font/woff2"
crossorigin="anonymous"
/>
<!-- Google tag (gtag.js) -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-8E24NNDK21"
></script>
<!-- html-to-image for pixel-perfect DOM capture -->
<script src="https://cdn.jsdelivr.net/npm/html-to-image@1.11.13/dist/html-to-image.min.js"></script>
</head>
<body>
<div id="creditMessage">
<img
id="menuButton"
src="https://cdn-icons-png.flaticon.com/512/7710/7710488.png"
width="16"
height="16"
alt="메뉴 열기"
loading="lazy"
/>
<span id="creditValue">0</span
><span style="font-size: 9pt">학점을 담았어요!</span>
<button
id="downloadImageButton"
type="button"
aria-label="시간표 이미지 다운로드"
>
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
fill="currentColor"
class="bi bi-download"
viewBox="0 0 16 16"
>
<path
d="M.5 9.9a.5.5 0 0 1 .5.5v2.5a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-2.5a.5.5 0 0 1 1 0v2.5a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2v-2.5a.5.5 0 0 1 .5-.5"
/>
<path
d="M7.646 11.854a.5.5 0 0 0 .708 0l3-3a.5.5 0 0 0-.708-.708L8.5 10.293V1.5a.5.5 0 0 0-1 0v8.793L5.354 8.146a.5.5 0 1 0-.708.708z"
/>
</svg>
</button>
<button id="shareButton" type="button" aria-label="시간표 공유 링크 복사">
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
fill="currentColor"
class="bi bi-share"
viewBox="0 0 16 16"
>
<path
d="M13.5 1a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3M11 2.5a2.5 2.5 0 1 1 .603 1.628l-6.718 3.12a2.5 2.5 0 0 1 0 1.504l6.718 3.12a2.5 2.5 0 1 1-.488.876l-6.718-3.12a2.5 2.5 0 1 1 0-3.256l6.718-3.12A2.5 2.5 0 0 1 11 2.5m-8.5 4a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3m11 5.5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3"
/>
</svg>
</button>
<!--<button id="detailButton">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="currentColor" class="bi bi-eye" viewBox="0 0 16 16">
<path d="M16 8s-3-5.5-8-5.5S0 8 0 8s3 5.5 8 5.5S16 8 16 8M1.173 8a13 13 0 0 1 1.66-2.043C4.12 4.668 5.88 3.5 8 3.5s3.879 1.168 5.168 2.457A13 13 0 0 1 14.828 8q-.086.13-.195.288c-.335.48-.83 1.12-1.465 1.755C11.879 11.332 10.119 12.5 8 12.5s-3.879-1.168-5.168-2.457A13 13 0 0 1 1.172 8z"/>
<path d="M8 5.5a2.5 2.5 0 1 0 0 5 2.5 2.5 0 0 0 0-5M4.5 8a3.5 3.5 0 1 1 7 0 3.5 3.5 0 0 1-7 0"/>
</svg>
</button>-->
</div>
<div class="menu" id="menu">
<h2>SYU KR</h2>
<ul>
<li><a href="https://www.syu.kr">홈</a></li>
<li><a href="/timetable">시간표 마법사</a></li>
<li><a href="/liberalarts">공통(교양) 검색</a></li>
<li><a href="/search">수강편람 검색</a></li>
<li><a href="/competitionRate">장바구니 경쟁률</a></li>
</ul>
<div
style="
margin-top: 30px;
text-align: center;
font-size: 8pt;
color: #777;
"
>
<div style="font-size: 7pt; color: #999; margin-top: 6px">
Since 2023.
</div>
<div style="font-size: 7pt; color: #bbb">
© 2026 SYU KR (KIM SANG YUN)
</div>
</div>
</div>
<div class="course-list" id="courseList">
<div class="drag-handle">
<div class="bar"></div>
</div>
<div class="department-select">
<div>
<div
class="search-input-row"
style="margin-top: 6px; display: flex; align-items: center"
>
<div class="button-with-label">
<span class="option small">옵션</span>
<button
id="detailOptionsButton"
class="icon-action attached-left"
type="button"
aria-label="옵션 열기"
>
<svg
width="32"
height="32"
viewBox="0 0 512 512"
xmlns="http://www.w3.org/2000/svg"
aria-hidden="true"
focusable="false"
>
<path
fill="currentColor"
d="M 94.5 48 L 193.5 48 Q 195.3 50.8 201.5 49 Q 219.3 53.2 229 65.5 L 237 79.5 L 240 94.5 L 240 193.5 L 237 208.5 Q 232.5 220.5 223.5 228 L 208.5 237 L 193.5 240 L 94.5 240 L 79.5 237 Q 66.8 232.2 59 222.5 L 51 208.5 L 48 193.5 L 48 94.5 L 51 79.5 Q 55.8 66.8 65.5 59 L 79.5 51 L 94.5 48 Z M 92 80 L 86 83 L 80 92 L 80 197 L 83 203 L 92 208 L 197 208 L 203 205 L 208 197 L 208 92 L 205 86 L 197 80 L 92 80 Z M 318.5 48 L 417.5 48 Q 419.3 50.8 425.5 49 Q 443.3 53.2 453 65.5 L 461 79.5 L 464 94.5 L 464 193.5 L 461 208.5 Q 456.5 220.5 447.5 228 L 432.5 237 L 417.5 240 L 318.5 240 L 303.5 237 Q 290.8 232.2 283 222.5 L 275 208.5 L 272 193.5 L 272 94.5 L 275 79.5 Q 279.8 66.8 289.5 59 L 303.5 51 L 318.5 48 Z M 316 80 L 310 83 L 304 92 L 304 197 L 307 203 L 316 208 L 421 208 L 427 205 L 432 197 L 432 92 L 429 86 L 421 80 L 316 80 Z M 94.5 272 L 193.5 272 Q 195.3 274.7 201.5 273 Q 219.3 277.2 229 289.5 L 237 303.5 L 240 318.5 L 240 417.5 L 237 432.5 Q 232.5 444.5 223.5 452 L 208.5 461 L 193.5 464 L 94.5 464 L 79.5 461 Q 66.8 456.2 59 446.5 L 51 432.5 L 48 417.5 L 48 318.5 L 51 303.5 Q 55.8 290.8 65.5 283 L 79.5 275 L 94.5 272 Z M 92 304 L 86 307 L 80 316 L 80 421 L 83 427 L 92 432 L 197 432 L 203 429 L 208 421 L 208 316 L 205 310 L 197 304 L 92 304 Z M 366.5 272 Q 378.1 272.4 382 280.5 L 384 287.5 L 384 352 L 449.5 352 Q 458.4 353.6 462 360.5 L 464 368.5 L 462 375.5 L 455.5 382 L 448.5 384 L 384 384 L 384 448.5 L 382 455.5 L 375.5 462 L 367.5 464 L 360.5 462 L 354 455.5 L 352 449.5 L 352 384 L 287.5 384 L 280.5 382 L 274 375.5 L 272 366.5 Q 273.3 359.8 277.5 356 L 286.5 352 L 352 352 L 352 286.5 Q 353.3 279.8 357.5 276 L 366.5 272 Z"
/>
</svg>
</button>
</div>
<div class="button-with-label">
<span class="option small">검색</span>
<div class="search-wrapper">
<svg
class="search-icon"
role="button"
tabindex="0"
aria-label="검색"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M20 20L15.8033 15.8033C15.8033 15.8033 14 18 10.5 18C6.35786 18 3 14.6421 3 10.5C3 6.35786 6.35786 3 10.5 3C14.6421 3 18 6.35786 18 10.5C18 11.0137 17.9484 11.5153 17.85 12"
stroke="currentColor"
stroke-width="1.5"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
<input
type="text"
id="searchText"
placeholder="검색어를 입력하세요"
aria-label="검색"
/>
</div>
</div>
</div>
</div>
</div>
<div class="course-items"></div>
</div>
<div class="main-layout">
<div class="timetable-container">
<table id="timetable">
<thead>
<tr>
<th style="width: 10px"></th>
<th style="width: 20%">월</th>
<th style="width: 20%">화</th>
<th style="width: 20%">수</th>
<th style="width: 20%">목</th>
<th style="width: 20%">금</th>
</tr>
</thead>
<tbody>
<tr>
<td style="color: #797979">1</td>
<td class="cell"></td>
<td class="cell"></td>
<td class="cell"></td>
<td class="cell"></td>
<td class="cell"></td>
</tr>
<tr>
<td style="color: #797979">2</td>
<td class="cell"></td>
<td class="cell"></td>
<td class="cell"></td>
<td class="cell"></td>
<td class="cell"></td>
</tr>
<tr>
<td style="color: #797979">3</td>
<td class="cell"></td>
<td class="cell"></td>
<td class="cell"></td>
<td class="cell"></td>
<td class="cell"></td>
</tr>
<tr>
<td style="color: #797979">4</td>
<td class="cell"></td>
<td class="cell"></td>
<td class="cell"></td>
<td class="cell"></td>
<td class="cell"></td>
</tr>
<tr>
<td style="color: #797979">5</td>
<td class="cell"></td>
<td class="cell"></td>
<td class="cell"></td>
<td class="cell"></td>
<td class="cell"></td>
</tr>
<tr>
<td style="color: #797979">6</td>
<td class="cell"></td>
<td class="cell"></td>
<td class="cell"></td>
<td class="cell"></td>
<td class="cell"></td>
</tr>
<tr>
<td style="color: #797979">7</td>
<td class="cell"></td>
<td class="cell"></td>
<td class="cell"></td>
<td class="cell"></td>
<td class="cell"></td>
</tr>
<tr style="display: none">
<td style="color: #797979">8</td>
<td class="cell"></td>
<td class="cell"></td>
<td class="cell"></td>
<td class="cell"></td>
<td class="cell"></td>
</tr>
<tr style="display: none">
<td style="color: #797979">9</td>
<td class="cell"></td>
<td class="cell"></td>
<td class="cell"></td>
<td class="cell"></td>
<td class="cell"></td>
</tr>
<tr style="display: none">
<td style="color: #797979">10</td>
<td class="cell"></td>
<td class="cell"></td>
<td class="cell"></td>
<td class="cell"></td>
<td class="cell"></td>
</tr>
<tr style="display: none">
<td style="color: #797979">11</td>
<td class="cell"></td>
<td class="cell"></td>
<td class="cell"></td>
<td class="cell"></td>
<td class="cell"></td>
</tr>
<tr style="display: none">
<td style="color: #797979">12</td>
<td class="cell"></td>
<td class="cell"></td>
<td class="cell"></td>
<td class="cell"></td>
<td class="cell"></td>
</tr>
<tr style="display: none">
<td style="color: #797979">13</td>
<td class="cell"></td>
<td class="cell"></td>
<td class="cell"></td>
<td class="cell"></td>
<td class="cell"></td>
</tr>
<tr style="display: none">
<td style="color: #797979">14</td>
<td class="cell"></td>
<td class="cell"></td>
<td class="cell"></td>
<td class="cell"></td>
<td class="cell"></td>
</tr>
<tr style="display: none">
<td style="color: #797979">15</td>
<td class="cell"></td>
<td class="cell"></td>
<td class="cell"></td>
<td class="cell"></td>
<td class="cell"></td>
</tr>
<tr style="display: none">
<td style="color: #797979">16</td>
<td class="cell"></td>
<td class="cell"></td>
<td class="cell"></td>
<td class="cell"></td>
<td class="cell"></td>
</tr>
</tbody>
</table>
<div class="drag-message" style="margin-top: 12px; text-align: right">
<span class="tips">TIPS</span>시간표에 넣어둔 과목을 누르면 자동으로
삭제돼요.
</div>
</div>
<aside id="infoCard" class="info-card" aria-live="polite">
<!-- selected course info will appear here on wide screens -->
</aside>
</div>
<div id="welcomeModal" class="modal">
<div class="modal-content">
<div class="modal-title">
<div style="font-weight: bold; font-size: 17pt">알려드려요!</div>
<span class="close-button">×</span>
</div>
<div class="modal-desc">
<img
src="./suya_.png"
alt="수야 캐릭터"
loading="lazy"
style="
width: 150px;
height: auto;
display: block;
margin: 0 auto;
padding-bottom: 20px;
"
/>
<p>
※
<strong
style="
padding: 2px;
border-radius: 4px;
background-color: rgb(255 51 51 / 10%);
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
color: #ff0000;
"
><span id="time"></span
></strong>
이후 업데이트된 강의들을 가져오고 있어요!
</p>
<!--<p style="color: red;">※ <strong style="padding: 2px; border-radius: 4px; background-color: rgb(255 51 51 / 10%); box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);">학교 사정</strong> 에 따라 강의 시간이나 교수가 갑작스럽게 변경될 수 있어요!</p>-->
<!--<div
style="
display: flex;
align-items: center;
gap: 12px;
padding: 12px;
border-radius: 8px;
background: linear-gradient(90deg, #fff8f0, #ffffff);
box-shadow: 0 4px 14px rgba(255, 159, 67, 0.08);
border: 1px solid rgba(255, 159, 67, 0.1);
margin: 8px 0;
"
>
<div style="font-weight: 800; font-size: 25px">📊</div>
<div style="flex: 1; min-width: 0">
<div
style="
font-weight: 800;
color: #d35400;
font-size: 1rem;
margin-bottom: 4px;
text-align: left;
"
>
<strong>NEW. 교양 경쟁률</strong> 오픈!
</div>
<div style="color: #555; font-size: 0.75rem; line-height: 1.3">
<a
href="https://sugang.syu.kr/liberalarts"
target="_blank"
rel="noopener noreferrer"
style="color: #005bb5; text-decoration: underline"
>교양 경쟁률</a
>
사이트가 새로 생겼어요. 교양 과목의 수강신청 장바구니 경쟁률을
확인해보세요. PC 환경만 지원해요.
</div>
</div>
</div>-->
<!-- <div
style="
display: flex;
align-items: center;
gap: 12px;
padding: 12px;
border-radius: 8px;
background: linear-gradient(90deg, #f5fbff, #ffffff);
box-shadow: 0 4px 14px rgba(3, 102, 255, 0.08);
border: 1px solid rgba(0, 118, 255, 0.1);
margin: 8px 0;
"
>
<div style="font-weight: 800; font-size: 25px">⚙️</div>
<div style="flex: 1; min-width: 0">
<div
style="
font-weight: 800;
color: #005bb5;
font-size: 1rem;
margin-bottom: 4px;
text-align: left;
"
>
<strong>NEW. 옵션</strong> 기능 출시!
</div>
<div style="color: #555; font-size: 0.75rem; line-height: 1.3">
<strong>학부(과), 학년, 이수구분</strong>을 설정하여 원하는
강의를 빠르게 필터링 할 수 있어요.
</div>
</div>
</div> -->
<div
style="
display: flex;
align-items: center;
gap: 12px;
padding: 12px;
border-radius: 8px;
background: linear-gradient(90deg, #f5fbff, #ffffff);
box-shadow: 0 4px 14px rgba(3, 102, 255, 0.08);
border: 1px solid rgba(0, 118, 255, 0.1);
margin: 8px 0;
"
>
<strong
style="
display: inline-flex;
align-items: center;
gap: 4px;
padding: 4px 4px;
border-radius: 6px;
background: linear-gradient(135deg, #0076ff 0%, #005bb5 100%);
color: white;
box-shadow: 0 2px 6px rgba(0, 76, 255, 0.3);
"
>
<svg
xmlns="http://www.w3.org/2000/svg"
width="14"
height="14"
fill="currentColor"
viewBox="0 0 16 16"
style="vertical-align: middle"
>
<path
d="M13.5 1a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3M11 2.5a2.5 2.5 0 1 1 .603 1.628l-6.718 3.12a2.5 2.5 0 0 1 0 1.504l6.718 3.12a2.5 2.5 0 1 1-.488.876l-6.718-3.12a2.5 2.5 0 1 1 0-3.256l6.718-3.12A2.5 2.5 0 0 1 11 2.5m-8.5 4a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3m11 5.5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3"
/>
</svg>
</strong>
<strong
style="
display: inline-flex;
align-items: center;
gap: 4px;
padding: 4px 4px;
border-radius: 6px;
background: linear-gradient(135deg, #0076ff 0%, #005bb5 100%);
color: white;
box-shadow: 0 2px 6px rgba(0, 76, 255, 0.3);
"
>
<svg
xmlns="http://www.w3.org/2000/svg"
width="14"
height="14"
fill="currentColor"
viewBox="0 0 16 16"
style="vertical-align: middle"
>
<path
d="M.5 9.9a.5.5 0 0 1 .5.5v2.5a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-2.5a.5.5 0 0 1 1 0v2.5a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2v-2.5a.5.5 0 0 1 .5-.5"
/>
<path
d="M7.646 11.854a.5.5 0 0 0 .708 0l3-3a.5.5 0 0 0-.708-.708L8.5 10.293V1.5a.5.5 0 0 0-1 0v8.793L5.354 8.146a.5.5 0 1 0-.708.708z"
/>
</svg>
</strong>
<div style="flex: 1; min-width: 0">
<div
style="
color: #2e7d32;
font-size: 0.75rem;
line-height: 1.3;
margin-bottom: 6px;
"
>
<strong style="color: #2e7d32"
>시간표 다운로드 문제 해결 ✅</strong
>
— iPhone / iPad에서 이미지를 저장하려면 다운로드 버튼을 눌러
저장하세요.
</div>
<div style="color: #555; font-size: 0.75rem; line-height: 1.3">
우측 상단 버튼을 이용하여 <strong>시간표</strong>를 공유하거나
<strong>다운로드</strong> 할 수 있어요.
</div>
</div>
</div>
</div>
</div>
</div>
<div
id="detailModal"
class="modal"
role="dialog"
aria-modal="true"
aria-labelledby="detailModalTitle"
>
<div class="modal-content">
<div class="modal-desc">
<div style="text-align: center; margin-top: 8px">
<span class="option">학부(과)</span>
<select id="departmentSelect">
<option value="">전체 학부(과)</option>
</select>
</div>
<div style="text-align: center; margin-top: 8px">
<span class="option">학년</span>
<div
class="grade-toggle segmented"
role="tablist"
aria-label="학년 필터"
style="margin-top: 6px"
>
<button
type="button"
class="grade-btn active"
data-grade=""
aria-pressed="true"
>
전체
</button>
<button
type="button"
class="grade-btn"
data-grade="1"
aria-pressed="false"
>
1학년
</button>
<button
type="button"
class="grade-btn"
data-grade="2"
aria-pressed="false"
>
2학년
</button>
<button
type="button"
class="grade-btn"
data-grade="3"
aria-pressed="false"
>
3학년
</button>
<button
type="button"
class="grade-btn"
data-grade="4"
aria-pressed="false"
>
4학년
</button>
</div>
</div>
<div style="text-align: center; margin-top: 8px">
<span class="option">요일</span>
<div
class="day-toggle segmented"
role="tablist"
aria-label="요일 필터"
style="margin-top: 6px"
>
<button
type="button"
class="day-btn"
data-day="월"
aria-pressed="false"
>
월
</button>
<button
type="button"
class="day-btn"
data-day="화"
aria-pressed="false"
>
화
</button>
<button
type="button"
class="day-btn"
data-day="수"
aria-pressed="false"
>
수
</button>
<button
type="button"
class="day-btn"
data-day="목"
aria-pressed="false"
>
목
</button>
<button
type="button"
class="day-btn"
data-day="금"
aria-pressed="false"
>
금
</button>
</div>
</div>
<div style="text-align: center; margin-top: 8px">
<span class="option">학점</span>
<div
class="credit-buttons segmented"
role="group"
aria-label="학점 필터"
style="margin-top: 6px"
>
<button
type="button"
class="credit-btn active"
data-credit=""
aria-pressed="true"
>
전체
</button>
<button type="button" class="credit-btn" data-credit="0">
0학점
</button>
<button type="button" class="credit-btn" data-credit="1">
1학점
</button>
<button type="button" class="credit-btn" data-credit="2">
2학점
</button>
<button type="button" class="credit-btn" data-credit="3">
3학점
</button>
<button type="button" class="credit-btn" data-credit="4">
4학점
</button>
</div>
</div>
<div style="text-align: center; margin-top: 8px">
<span class="option">이수구분</span>
<div
class="type-toggle segmented"
role="group"
aria-label="이수구분 필터"
style="margin-top: 6px"
>
<button
type="button"
class="type-btn"
data-type="전공선택"
aria-pressed="false"
>
전공선택
</button>
<button
type="button"
class="type-btn"
data-type="전공필수"
aria-pressed="false"
>
전공필수
</button>
<button
type="button"
class="type-btn"
data-type="교양선택"
aria-pressed="false"
>
교양선택
</button>
<button
type="button"
class="type-btn"
data-type="교양필수"
aria-pressed="false"
>
교양필수
</button>
<button
type="button"
class="type-btn"
data-type="교직필수"
aria-pressed="false"
>
교직필수
</button>
</div>
</div>
<div style="text-align: right; margin-top: 30px">
<button id="applyDetailOptions" class="searchStyle">적용</button>
</div>
</div>
</div>
</div>
<script src="timetable.js"></script>
</body>
</html>