-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsun.html
119 lines (105 loc) · 4.56 KB
/
sun.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>快点 HAM 工具箱 - 传播预测 - 欢哥科技</title>
<meta name="description" content="快点 HAM 工具箱是一个在 Web 上为业余无线电爱好者提供服务的工具集。">
<meta name="keywords" content="在线工具,无线电,业余无线电,HAM,梅登黑德网格定位系统,QRZ,中继查询">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdmirror.com/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<style>
body {
background-color: #333;
color: aliceblue;
font-family: Arial, sans-serif;
}
h1 {
font-size: 2rem;
font-weight: bold;
margin-bottom: 1rem;
}
.jumbotron {
background-color: #444;
padding: 2rem;
}
p {
font-size: 1.1rem;
line-height: 1.5;
}
img {
max-width: 100%;
height: auto;
}
</style>
</head>
<body>
<div class="container">
<div class="jumbotron mt-3 text-center">
<h1>传播预测</h1>
<div class="content">
<div id="beijingTime"></div>
<div id="utcTime"></div>
<script>
function displayTime() {
var date = new Date();
// 获取北京时间
var beijingTime = date.toLocaleString("en-US", { timeZone: "Asia/Shanghai", hour12: false });
// 获取 UTC 时间
var utcTime = date.toISOString().slice(0, 19).replace("T", " ");
// 显示时间
document.getElementById("beijingTime").textContent = "北京时间: " + beijingTime;
document.getElementById("utcTime").textContent = "UTC 时间: " + utcTime;
}
// 每秒更新时间
setInterval(displayTime, 1000);
</script>
<div class="maincontent clearfix">
<p>
<strong>本页为您精心准备了各波段传播开通情况及实时太阳图片,可用于预测短波通信传播,助您 DX 成功。</strong>
</p>
<h2>UV 传播</h2>
<p>
<a href="https://www.dxinfocentre.com/tropo_eas.html"><img height="360px" src="https://www.dxinfocentre.com/tr_map/fcst/eas006.png"></a>
</p>
<h2>短波传播</h2>
<p>
<a href="https://www.hamqsl.com/solar.html"><img src="https://www.hamqsl.com/solar101pic.php"></a>
</p>
<h2>空间环境</h2>
<p>
<a href="https://www.hamqsl.com/solar.html"><img src="https://www.hamqsl.com/solarmap.php"></a>
</p>
<h2>实时太阳</h2>
<p>
<img src="https://sohowww.nascom.nasa.gov/data/realtime/eit_304/512/latest.jpg" alt="">
</p>
<p>
<img src="https://sohowww.nascom.nasa.gov/data/realtime/eit_284/512/latest.jpg" alt="">
</p>
<p>
<img src="https://sohowww.nascom.nasa.gov/data/realtime/eit_171/512/latest.jpg" alt="">
</p>
<p>
<img src="https://sohowww.nascom.nasa.gov/data/realtime/eit_195/512/latest.jpg" alt="">
</p>
<p>
<img src="https://sohowww.nascom.nasa.gov/data/realtime/c2/512/latest.jpg" alt="">
</p>
<p>
<img src="https://sohowww.nascom.nasa.gov/data/realtime/c3/512/latest.jpg" alt="">
</p>
<h2>电离层 TEC 现报</h2>
<p>
<img src="img/tec_202406260530.png" alt="">
</p>
</div>
</div>
</div>
</div>
<!-- jQuery library -->
<script src="https://cdnjs.loli.net/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<!-- Bootstrap JS -->
<script src="https://cdn.jsdmirror.com/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>