-
-
本网页由
woodchen开源于
Github
+
-
- 查询结果
-
-
-
-
-
- 序号 |
- API KEY |
- 总额度 |
- 已使用 |
- 剩余量 |
-
- 到期时间 |
- 模型[最高] |
- 绑卡 |
-
-
- 速率[RPM,TPM] |
- 有效 |
-
-
-
-
-
-
-
-
-
-
+
diff --git a/static/css-1.css b/static/css-1.css
index 4faf361..650cbed 100644
--- a/static/css-1.css
+++ b/static/css-1.css
@@ -6,10 +6,7 @@ body {
padding:0;
}
mdui-layout {
- height: 100%;
- width:80%;
- margin:auto;
- padding:0;
+ height: 100VH;
}
a {
text-decoration: none;
diff --git a/static/js.js b/static/js.js
index 8e94588..94e9026 100644
--- a/static/js.js
+++ b/static/js.js
@@ -599,3 +599,17 @@ function hideLoadingAnimation() {
button.innerHTML = "查询";
}
+const navigationDrawer = document.querySelector(".left-drawer");
+const toggleButton = document.getElementById("toggle-button");
+
+let isOpen = true;
+
+toggleButton.addEventListener("click", () => {
+ isOpen = !isOpen;
+ if (isOpen) {
+ navigationDrawer.open = true;
+ } else {
+ navigationDrawer.open = false;
+ }
+});
+