-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
82 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,83 @@ | ||
<!DOCTYPE html> | ||
<html lang="zh-CN"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>ASRTU-1 卫星遥测信息快捷面板</title> | ||
<style> | ||
/* 全局样式 */ | ||
body { | ||
font-family: Arial, sans-serif; | ||
margin: 0; | ||
padding: 0; | ||
background-color: #f0f0f0; | ||
} | ||
|
||
.container { | ||
max-width: 600px; | ||
margin: auto; | ||
padding: 20px; | ||
} | ||
|
||
h1 { | ||
text-align: center; | ||
color: #333; | ||
} | ||
|
||
.link-panel { | ||
display: grid; | ||
gap: 15px; | ||
grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); | ||
} | ||
|
||
.link-panel a { | ||
display: block; | ||
text-align: center; | ||
padding: 15px; | ||
background-color: #1e90ff; | ||
color: #fff; | ||
border-radius: 8px; | ||
text-decoration: none; | ||
transition: background-color 0.3s ease; | ||
} | ||
|
||
.link-panel a:hover { | ||
background-color: #0077cc; | ||
} | ||
|
||
.footer { | ||
margin-top: 30px; | ||
text-align: center; | ||
color: #666; | ||
} | ||
|
||
.footer a { | ||
color: #1e90ff; | ||
text-decoration: none; | ||
} | ||
|
||
/* 移动端优化 */ | ||
@media (max-width: 600px) { | ||
.link-panel { | ||
grid-template-columns: 1fr; | ||
} | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
|
||
<div class="container"> | ||
<h1>ASRTU-1 遥测信息快捷面板</h1> | ||
<div class="link-panel"> | ||
<a target="_blank" href="http://1.92.100.130/pages/lines.html?sat=ASRTU-1&data=SAT-C00018.7.16:12V%25E6%25AF%258D%25E7%25BA%25BF%25E7%2594%25B5%25E5%258E%258B;SAT-C00020.7.16:5V%25E6%25AF%258D%25E7%25BA%25BF%25E7%2594%25B5%25E5%258E%258B;SAT-C00022.7.16:3.3V%25E6%25AF%258D%25E7%25BA%25BF%25E7%2594%25B5%25E5%258E%258B;SAT-C00024.7.16:12V%25E6%25AF%258D%25E7%25BA%25BF%25E7%2594%25B5%25E6%25B5%2581;SAT-C00026.7.16:5V%25E6%25AF%258D%25E7%25BA%25BF%25E7%2594%25B5%25E6%25B5%2581;SAT-C00028.7.16:3.3V%25E6%25AF%258D%25E7%25BA%25BF%25E7%2594%25B5%25E6%25B5%2581">供电母线电压及电流情况</a> | ||
<a target="_blank" href="http://1.92.100.130/pages/lines.html?sat=ASRTU-1&data=SAT-C00036.7.16:MPPT1%25E7%2594%25B5%25E5%258E%258B;SAT-C00038.7.16:MPPT2%25E7%2594%25B5%25E5%258E%258B;SAT-C00040.7.16:MPPT3%25E7%2594%25B5%25E5%258E%258B;SAT-C00042.7.16:MPPT1%25E7%2594%25B5%25E6%25B5%2581;SAT-C00044.7.16:MPPT2%25E7%2594%25B5%25E6%25B5%2581;SAT-C00046.7.16:MPPT3%25E7%2594%25B5%25E6%25B5%2581">MMTP 太阳能帆板输出情况</a> | ||
<a target="_blank" href="http://1.92.100.130/pages/lines.html?sat=ASRTU-1&data=SAT-C00048.7.16:%25E5%2585%2585%25E7%2594%25B5%25E5%2599%25A81%25E7%2594%25B5%25E5%258E%258B;SAT-C00050.7.16:%25E5%2585%2585%25E7%2594%25B5%25E5%2599%25A82%25E7%2594%25B5%25E5%258E%258B;SAT-C00052.7.16:%25E5%2585%2585%25E7%2594%25B5%25E5%2599%25A81%25E7%2594%25B5%25E6%25B5%2581;SAT-C00054.7.16:%25E5%2585%2585%25E7%2594%25B5%25E5%2599%25A82%25E7%2594%25B5%25E6%25B5%2581">充电器电压及电流情况</a> | ||
</div> | ||
|
||
<div class="footer"> | ||
<p>在 <a href="https://github.com/X-MQSI/ASRTU-1-Data-Link" target="_blank">GitHub</a> 上修改此页面</p> | ||
</div> | ||
</div> | ||
|
||
</body> | ||
</html> |