-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdgpa.html
742 lines (628 loc) · 24.1 KB
/
dgpa.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>全台停班停課即時資訊</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@400;500;700&display=swap" rel="stylesheet">
<style>
/* 原有的樣式保留 */
.card {
margin-bottom: 1rem;
transition: transform 0.2s;
}
/* 新增載入動畫樣式 */
.loading {
display: flex;
justify-content: center;
align-items: center;
min-height: 200px;
}
.spinner {
width: 50px;
height: 50px;
border: 5px solid #f3f3f3;
border-top: 5px solid #3498db;
border-radius: 50%;
animation: spin 1s linear infinite;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
/* 表格樣式調整 */
.table td {
white-space: nowrap; /* 縣市強制橫式 */
}
.table td:last-child {
white-space: normal; /* 內容可以換行 */
min-width: 200px; /* 設定最小寬度 */
}
/* RWD 調整 */
@media (max-width: 768px) {
.container {
padding: 0 10px;
}
.table {
font-size: 0.9rem;
}
.col-md-4 {
margin-bottom: 20px;
}
h3 {
font-size: 1.5rem;
}
.table td:last-child {
min-width: 150px; /* 手機版縮小最小寬度 */
}
/* 確保在手機版時表格可以水平捲動 */
.table-responsive {
overflow-x: auto;
-webkit-overflow-scrolling: touch;
}
}
@media (max-width: 576px) {
.table {
font-size: 0.8rem;
}
h3 {
font-size: 1.2rem;
}
.table td:last-child {
min-width: 120px; /* 更進一步縮小寬 */
}
/* 調整容器邊距 */
.container {
padding: 0 5px;
}
/* 調整標題大小 */
h1 {
font-size: 1.5rem;
}
}
/* 表格內容美化 */
.table-warning {
background-color: #fff3cd !important;
}
.table td, .table th {
vertical-align: middle;
}
/* 區域標題樣式 */
h3 {
margin-bottom: 1rem;
padding: 0.5rem;
border-radius: 5px;
background-color: #f8f9fa;
}
/* 容器間距調整 */
.row > div {
margin-bottom: 2rem;
}
/* 新增暗色模式相關樣式 */
:root {
--dark-bg: #1a1a1a;
--dark-text: #ffffff;
--dark-table-bg: #2d2d2d;
--dark-table-border: #4c4c4c;
--dark-table-header: #383838;
--status-red: #ea4242;
--status-purple: #800080;
--status-blue: #0d6cd9;
}
/* 暗色主題類 */
.dark-theme {
background-color: var(--dark-bg);
color: #ffffff !important; /* 確保基本文字為白色 */
}
.dark-theme .table {
color: var(--dark-text) !important;
}
.dark-theme .table td,
.dark-theme .table th {
color: var(--dark-text) !important;
border-color: var(--dark-table-border);
background-color: var(--dark-table-bg) !important;
}
.dark-theme h1,
.dark-theme h3,
.dark-theme h4 {
color: #ffffff !important;
}
/* 確保暗色模式下的一般文字為白色 */
.dark-theme .table span:not([style*="color:"]) {
color: #ffffff !important;
}
.dark-theme .table-bordered {
border-color: var(--dark-table-border);
}
.dark-theme .text-muted {
color: #a0a0a0 !important;
}
.dark-theme .table-warning,
.dark-theme td[style*="background-color: rgb(255, 243, 205)"] {
background-color: #2c2c1f !important;
color: #ffd700 !important;
}
.dark-theme h3 {
background-color: #2c2c2c;
}
/* 主題切換按鈕樣式 */
.theme-switch-wrapper {
display: flex;
justify-content: flex-end;
padding: 0 1rem;
margin-bottom: 1rem;
}
.theme-switch-btn {
background: none;
border: 2px solid #666;
border-radius: 20px;
padding: 5px 15px;
cursor: pointer;
transition: all 0.3s ease;
}
.dark-theme .theme-switch-btn {
border-color: #888;
color: var(--dark-text);
}
.light-icon, .dark-icon {
font-size: 1.2rem;
}
.dark-theme .light-icon,
.light-theme .dark-icon {
display: none;
}
/* 全域字體設定 */
body {
font-family: 'Noto Sans TC', system-ui, -apple-system, sans-serif;
}
/* 確保標題也使用相同字體 */
h1, h2, h3, h4, h5, h6 {
font-family: 'Noto Sans TC', system-ui, -apple-system, sans-serif;
}
/* 表格內容字體 */
.table {
font-family: 'Noto Sans TC', system-ui, -apple-system, sans-serif;
}
/* 字重調整 */
h1 {
font-weight: 700; /* 粗體 */
}
h3 {
font-weight: 500; /* 中等粗細 */
}
.table th {
font-weight: 500; /* 表格標題中等粗細 */
}
.table td {
font-weight: 400; /* 表格內容正常粗細 */
}
/* 在 style 區塊中更新/新增以下樣式 */
.status-normal,
.status-alert,
.region-name {
display: none;
}
.status-alert {
color: #fb6868;
}
.region-name {
color: #4a90e2; /* 淡藍色 */
}
.status-alert {
color: #fb6868; /* 保持原有的紅色警示 */
}
/* 更新時間區塊樣式 */
.update-info {
margin-bottom: 2rem;
text-align: right;
}
.update-info h4 {
font-weight: normal;
font-size: 1rem;
margin-bottom: 0.5rem;
}
.update-info a {
color: #4a90e2;
text-decoration: none;
}
.update-info a:hover {
text-decoration: underline;
}
/* 暗色模式適配 */
.dark-theme .update-info a {
color: #7cb9ff;
}
/* 日期標題樣式 */
.Header_YMD {
text-align: center;
font-size: 1.2rem;
margin-bottom: 1.5rem;
font-weight: 500;
}
/* 暗色模式適配 */
.dark-theme .Header_YMD {
color: var(--dark-text);
}
@media (max-width: 576px) {
.Header_YMD {
font-size: 1rem;
}
}
/* 表格內容美化樣式 */
.table-responsive {
overflow: hidden;
}
/* 更新暗色模式相關樣式 */
.dark-theme span[style*="color: #ea4242"] {
color: #ff6b6b !important; /* 較亮的紅色 */
}
.dark-theme span[style*="color: purple"] {
color: #e085e0 !important; /* 較亮的紫色 */
}
.dark-theme span[style*="color: #0d6cd9"] {
color: #7cb9ff !important; /* 較亮的藍色 */
}
/* 表格內容顏色統一使用變數 */
.table td span[style*="color: #ea4242"] {
color: var(--status-red) !important;
}
.table td span[style*="color: purple"] {
color: var(--status-purple) !important;
}
.table td span[style*="color: #0d6cd9"] {
color: var(--status-blue) !important;
}
/* 暗色主題基本樣式 */
.dark-theme {
background-color: var(--dark-bg);
color: var(--dark-text) !important;
}
/* 暗色主題表格樣式 */
.dark-theme .table {
color: var(--dark-text) !important;
}
.dark-theme .table td,
.dark-theme .table th {
color: var(--dark-text) !important;
border-color: var(--dark-table-border);
background-color: var(--dark-table-bg) !important;
}
.dark-theme .table span {
color: var(--dark-text) !important;
}
/* 保持特殊狀態的顏色 */
.dark-theme .table span[style*="color: #ea4242"],
.dark-theme .table span[style*="color: purple"],
.dark-theme .table span[style*="color: #0d6cd9"] {
color: inherit !important;
}
/* 一般文字顏色 */
.dark-theme .table span:not([style]) {
color: var(--dark-text) !important;
}
/* 特殊狀態的顏色 */
.dark-theme .table span[style*="color: #ea4242"] {
color: #ff6b6b !important;
}
.dark-theme .table span[style*="color: purple"] {
color: #e085e0 !important;
}
.dark-theme .table span[style*="color: #0d6cd9"] {
color: #7cb9ff !important;
}
/* 更新暗色模式相關樣式 */
.dark-theme {
background-color: var(--dark-bg);
color: #ffffff !important;
}
/* 確保暗色模式下所有表格內容為白色 */
.dark-theme .table td,
.dark-theme .table th,
.dark-theme .table td span,
.dark-theme .table td div {
color: #ffffff !important;
}
/* 特殊狀態的顏色覆蓋 */
.dark-theme .table span[style*="color: #ea4242"] {
color: #ff6b6b !important;
}
.dark-theme .table span[style*="color: purple"] {
color: #e085e0 !important;
}
.dark-theme .table span[style*="color: #0d6cd9"] {
color: #7cb9ff !important;
}
/* 確保純文字內容為白色 */
.dark-theme .table td:not(:has(span[style*="color"])) {
color: #ffffff !important;
}
/* 確保所有純文字為白色 */
.dark-theme .table td {
color: #ffffff !important;
}
.dark-theme .table td span:not([style*="color:"]),
.dark-theme .table td:not(:has(span[style*="color"])) {
color: #ffffff !important;
}
/* 暗色模式下將黑色文字改為白色 */
.dark-theme .table td span[style*="color: #000000"],
.dark-theme .table td span[style*="color: black"],
.dark-theme .table td span[style*="color:#000000"],
.dark-theme .table td span[style*="color:black"] {
color: #ffffff !important;
}
/* 確保所有純文字為白色 */
.dark-theme .table td {
color: #ffffff !important;
}
.dark-theme .table td span:not([style*="color:"]),
.dark-theme .table td:not(:has(span[style*="color"])) {
color: #ffffff !important;
}
/* 更新暗色模式相關樣式 */
.dark-theme span[style*="color: #000080"] {
color: #7cb9ff !important; /* 淡藍色 */
}
/* 確保一般文字為白色,但保留特殊顏色的文字 */
.dark-theme .table td {
color: #ffffff !important;
}
.dark-theme .table td span:not([style*="color:"]) {
color: #ffffff !important;
}
/* 保持特殊狀態的顏色 */
.dark-theme .table span[style*="color: #ea4242"] {
color: #ff6b6b !important; /* 較亮的紅色 */
}
.dark-theme .table span[style*="color: #000080"] {
color: #7cb9ff !important; /* 淡藍色 */
}
/* 確保黑色文字在暗色模式下變為白色 */
.dark-theme .table span[style*="color: #000000"],
.dark-theme .table span[style*="color: black"] {
color: #ffffff !important;
}
</style>
</head>
<body>
<div class="container py-4">
<div class="theme-switch-wrapper">
<button class="theme-switch-btn" id="themeToggle">
<span class="light-icon">☀️</span>
<span class="dark-icon">🌙</span>
</button>
</div>
<h1 class="text-center mb-4">全台停班停課即時資訊</h1>
<!-- 載入動畫 -->
<div id="loading" class="loading">
<div class="spinner"></div>
</div>
<!-- 資料顯示區域 -->
<div id="data-container" style="display: none;">
<div class="Header_YMD" id="dateHeader">
載入中...
</div>
<div class="update-info">
<h4>
更新時間:<span id="updateTime">載入中...</span>
<br>
<a href="https://www.dgpa.gov.tw/informationlist?uid=374" target="_blank">歷次天然災害停止上班上課訊息</a>
</h4>
</div>
<div class="row">
<!-- 北部地區 -->
<div class="col-12 col-md-4">
<h3 class="text-center">北部地區🐲</h3>
<div class="table-responsive">
<table class="table table-bordered">
<thead>
<tr>
<th class="text-center">縣市</th>
<th class="text-center">停班停課狀態</th>
</tr>
</thead>
<tbody id="northTable"></tbody>
</table>
</div>
</div>
<!-- 中部地區 -->
<div class="col-12 col-md-4">
<h3 class="text-center">中部地區🗿</h3>
<div class="table-responsive">
<table class="table table-bordered">
<thead>
<tr>
<th class="text-center">縣市</th>
<th class="text-center">停班停課狀態</th>
</tr>
</thead>
<tbody id="centralTable"></tbody>
</table>
</div>
</div>
<!-- 南部地區 -->
<div class="col-12 col-md-4">
<h3 class="text-center">南部地區🐖</h3>
<div class="table-responsive">
<table class="table table-bordered">
<thead>
<tr>
<th class="text-center">縣市</th>
<th class="text-center">停班停課狀態</th>
</tr>
</thead>
<tbody id="southTable"></tbody>
</table>
</div>
</div>
<!-- 東部地區 -->
<div class="col-12 col-md-4">
<h3 class="text-center">東部地區🌼</h3>
<div class="table-responsive">
<table class="table table-bordered">
<thead>
<tr>
<th class="text-center">縣市</th>
<th class="text-center">停班停課狀態</th>
</tr>
</thead>
<tbody id="eastTable"></tbody>
</table>
</div>
</div>
<!-- 外島地區 -->
<div class="col-12 col-md-4">
<h3 class="text-center">外島地區🏝️</h3>
<div class="table-responsive">
<table class="table table-bordered">
<thead>
<tr>
<th class="text-center">縣市</th>
<th class="text-center">停班停課狀態</th>
</tr>
</thead>
<tbody id="islandTable"></tbody>
</table>
</div>
</div>
</div>
</div>
</div>
<script>
const API_URL = "https://proxy.aliceric27.workers.dev/?url=https://www.dgpa.gov.tw/typh/daily/nds.html";
// const API_URL = "./test.html";
// 定義縣市分類
const regions = {
north: ['臺北市', '新北市', '基隆市', '桃園市', '新竹市', '新竹縣'],
central: ['苗栗縣', '臺中市', '彰化縣', '南投縣', '雲林縣'],
south: ['嘉義市', '嘉義縣', '臺南市', '高雄市', '屏東縣'],
east: ['宜蘭縣', '花蓮縣', '臺東縣'],
island: ['澎湖縣', '金門縣', '連江縣']
};
async function processData(html) {
const parser = new DOMParser();
const doc = parser.parseFromString(html, 'text/html');
const table = doc.querySelector('#Table');
const alerts = {};
// 獲取標題日期
const headerElement = doc.querySelector('.Header_YMD');
if (headerElement) {
const headerText = headerElement.textContent.trim();
document.getElementById('dateHeader').textContent = headerText;
}
// 獲取更新時間
const updateTimeElement = doc.querySelector('.Content_Updata');
if (updateTimeElement) {
const timeText = updateTimeElement.textContent.match(/更新時間:([\d\/: ]+)/);
if (timeText && timeText[1]) {
document.getElementById('updateTime').textContent = timeText[1].trim();
}
}
if (!table) return alerts;
const rows = table.querySelectorAll('tr');
rows.forEach(row => {
const cells = row.querySelectorAll('td');
if (cells.length >= 2) {
const city = cells[0].textContent.trim();
const statusHtml = cells[1].innerHTML;
const hasAlert = statusHtml.includes('停止上班') || statusHtml.includes('停止上課');
alerts[city] = {
statusHtml: statusHtml,
hasAlert: hasAlert
};
}
});
return alerts;
}
// 更新資料獲取方
async function fetchData() {
try {
const response = await fetch(API_URL);
if (!response.ok) throw new Error(`HTTP error! status: ${response.status}`);
const html = await response.text();
const alerts = await processData(html);
document.getElementById('loading').style.display = 'none';
document.getElementById('data-container').style.display = 'block';
updateTables(alerts);
} catch (error) {
console.error('Error fetching data:', error);
document.getElementById('loading').innerHTML = `
<div class="alert alert-danger" role="alert">
無法載入資料,請稍後再試
<br>
<small class="text-muted">${error.message}</small>
</div>`;
}
}
// 修改表格更新函數
function updateTables(alerts) {
Object.keys(regions).forEach(region => {
const tableBody = document.getElementById(`${region}Table`);
if (tableBody) {
tableBody.innerHTML = regions[region].map(city => {
const displayCity = city;
const alert = alerts[city];
const statusHtml = alert ? alert.statusHtml : '未發佈(正常上班上課)';
const formattedStatus = statusHtml
.replace(/<br>/g, '\n')
.replace(/<font color="#FF0000">/g, '<span style="color: #ea4242">')
.replace(/<font color="#000000">/g, '<span style="color: #000000">')
.replace(/<font color="#000080">/g, '<span style="color: #000080">')
.replace(/<\/font>/g, '</span>')
.replace(/。\s*/g, '。\n')
.replace(/。$/g, '。');
return `
<tr>
<td class="text-center">${displayCity}</td>
<td class="text-center" style="white-space: pre-line">${formattedStatus}</td>
</tr>
`;
}).join('');
}
});
}
// 初始化
document.addEventListener('DOMContentLoaded', () => {
fetchData();
// 每5分鐘更新一次資料
setInterval(fetchData, 300000);
});
// 添加主題切換功能
document.addEventListener('DOMContentLoaded', function() {
const themeToggle = document.getElementById('themeToggle');
// 檢查是否有使用者手動設定的主題
const userSetTheme = localStorage.getItem('userSetTheme');
if (userSetTheme) {
// 如果有手動設定,使用手動設定的主題
document.body.className = userSetTheme;
} else {
// 如果沒有手動設定,跟隨系統主題
if (window.matchMedia('(prefers-color-scheme: dark)').matches) {
document.body.className = 'dark-theme';
} else {
document.body.className = 'light-theme';
}
}
// 切換主題按鈕事件
themeToggle.addEventListener('click', () => {
if (document.body.className === 'light-theme') {
document.body.className = 'dark-theme';
localStorage.setItem('userSetTheme', 'dark-theme');
} else {
document.body.className = 'light-theme';
localStorage.setItem('userSetTheme', 'light-theme');
}
});
// 監聽系統主題變化
window.matchMedia('(prefers-color-scheme: dark)').addEventListener('change', e => {
// 只有在使用者沒有手動設定主題時,才跟隨系統主題
if (!localStorage.getItem('userSetTheme')) {
document.body.className = e.matches ? 'dark-theme' : 'light-theme';
}
});
});
</script>
</body>
</html>