diff --git a/index.html b/index.html index bb54397..378572a 100644 --- a/index.html +++ b/index.html @@ -1,5 +1,5 @@ - +
@@ -7,94 +7,72 @@页面列表:
- 查API信息页面列表:
+本站不保存 KEY 信息,查询后请自行保存
+本站不保存 KEY 信息,查询后请自行保存
支持自定义线路,官网线路需要魔法
-序号 | @@ -105,7 +83,7 @@已用比例 | 到期时间 | 模型[最高] | -绑卡 | +绑卡 | 绑卡信息 | 组织信息 | 速率[RPM,TPM] | @@ -119,8 +97,8 @@ - - + + diff --git a/static/css-1.css b/static/css-1.css index 658b5e9..4faf361 100644 --- a/static/css-1.css +++ b/static/css-1.css @@ -1,15 +1,21 @@ -body { - background: url('https://cdn-img-r2.czl.net/2023/05/23/pjbczr.webp') no-repeat center center fixed; - background-size:cover; -} - html, body { height: 100%; + width:100%; + margin:0; + padding:0; } - -.container { +mdui-layout { height: 100%; + width:80%; + margin:auto; + padding:0; +} +a { + text-decoration: none; +} +.hidden{ + display:none; } diff --git a/static/js.js b/static/js.js index bdab1a6..8e94588 100644 --- a/static/js.js +++ b/static/js.js @@ -1,13 +1,13 @@ function toggleProgressBar() { let progressBarHeader = document.getElementById("progressbar-header"); let progressBarCells = document.querySelectorAll("td.progressbar"); - let toggle = document.querySelector("#progressbar-toggle input"); + let toggle = document.querySelector("#progressbar-toggle mdui-checkbox"); let display = toggle.checked ? "" : "none"; progressBarHeader.style.display = display; progressBarCells.forEach(function (cell) { cell.style.display = display; }); } function toggleSubInfo() { - let toggle = document.querySelector("#subinfo-toggle input"); + let toggle = document.querySelector("#subinfo-toggle mdui-checkbox"); let display = toggle.checked ? "" : "none"; let subInfoHeader = document.getElementById("subinfo-header"); @@ -18,7 +18,7 @@ function toggleSubInfo() { } function toggleSetidInfo() { - let toggle = document.querySelector("#setid-toggle input"); + let toggle = document.querySelector("#setid-toggle mdui-checkbox"); let display = toggle.checked ? "" : "none"; let setIdHeader = document.getElementById("setid-header"); @@ -430,7 +430,7 @@ function sendRequest() { progressContainer.appendChild(progressBar); // 将进度条添加到容器中 progressCell.appendChild(progressContainer); // 将容器添加到单元格中 row.appendChild(progressCell); - progressCell.style.display = document.querySelector("#progressbar-toggle input").checked ? "" : "none"; + progressCell.style.display = document.querySelector("#progressbar-toggle mdui-checkbox").checked ? "" : "none"; // 到期时间 @@ -491,7 +491,7 @@ function sendRequest() { SubInformation.appendChild(SubInformationContainer); row.appendChild(SubInformation); - SubInformation.style.display = document.querySelector("#subinfo-toggle input").checked ? "" : "none"; + SubInformation.style.display = document.querySelector("#subinfo-toggle mdui-checkbox").checked ? "" : "none"; let setidCell = document.createElement("td"); @@ -503,7 +503,7 @@ function sendRequest() { setidCellContainer.textContent = data[9]; setidCell.appendChild(setidCellContainer); row.appendChild(setidCell); - setidCell.style.display = document.querySelector("#setid-toggle input").checked ? "" : "none"; + setidCell.style.display = document.querySelector("#setid-toggle mdui-checkbox").checked ? "" : "none"; let rateLimitsDataCell = document.createElement("td");
---|