first commit

This commit is contained in:
dekun
2026-05-22 13:06:42 +08:00
commit af5c249cf8
27 changed files with 1741 additions and 0 deletions
+66
View File
@@ -0,0 +1,66 @@
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>币安 U本位 成交额 Top30</title>
<link rel="stylesheet" href="/static/style.css" />
</head>
<body>
<header>
<h1>币安 U本位合约 · 成交额排名</h1>
<p class="subtitle">北京时间 08:00 切日 · Top30 · 高亮:≥1000万 USDT / |涨跌|≥5%</p>
</header>
<section class="panel" id="panel-yesterday">
<div class="panel-head">
<h2>昨日周期</h2>
<span class="period" id="yesterday-period"></span>
<span class="updated" id="yesterday-updated"></span>
</div>
<div class="table-wrap">
<table>
<thead>
<tr>
<th>排名</th>
<th>合约</th>
<th>成交额 (USDT)</th>
<th>涨跌幅</th>
<th>标记</th>
</tr>
</thead>
<tbody id="yesterday-body"></tbody>
</table>
</div>
</section>
<section class="panel" id="panel-today">
<div class="panel-head">
<h2>今日周期 <span class="live">实时</span></h2>
<span class="period" id="today-period"></span>
<span class="updated" id="today-updated"></span>
</div>
<div class="table-wrap">
<table>
<thead>
<tr>
<th>排名</th>
<th>合约</th>
<th>成交额 (USDT)</th>
<th>涨跌幅</th>
<th>标记</th>
</tr>
</thead>
<tbody id="today-body"></tbody>
</table>
</div>
</section>
<footer>
<button type="button" id="btn-refresh">立即刷新今日</button>
<span id="status"></span>
</footer>
<script src="/static/app.js"></script>
</body>
</html>