-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (50 loc) · 1.72 KB
/
Copy pathindex.html
File metadata and controls
50 lines (50 loc) · 1.72 KB
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
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<title>Tubbs</title>
<link rel="stylesheet" type="text/css" href="res/css/sharedstyle.css">
<link rel="stylesheet" type="text/css" href="res/css/style.css">
<link rel="icon" type="image/x-icon" href="./res/icon/favicon.ico">
<script src="./libs/lodash.js"></script>
</head>
<body>
<div id="c_search">
<p id="webtitle">Tubbs</p>
<p class="webtitle2">最齐全的电子管数据手册数据库</p>
<p class="webtitle2">支持按照参数搜索</p>
<div id="c_s_2">
<span>
<label id="search">
<input placeholder="输入型号或者参数表达式以搜索电子管..." type="text" id="inp_search" autocomplete="off" class="suggestion-focus">
<div id="suggestions-list"></div>
</label>
<button id="search_btn" onclick="gotoMainPage()">搜索</button>
</span>
</div>
</div>
<div id="bottom-information">
数据均来源自<a href="https://tube-data.com/">tube-data.com</a>
Created by
<a href="../text.html?text=5pyJ6Zeu6aKY6K+35Y+R6YCB6YKu5Lu25YiwYWRtaW5AaHhnZmsuY29t">Hxgfk</a>
@ Copyright (c)
<a href="../licensepage/#?type=GPLv3">GNU General Public License v3.0</a>
<a href="https://github.com/Hxgfk/Tubbs">开源</a>
<a href="./submitTube.html">上传电子管数据</a>
<a href="./credits.html">使用的开源项目</a>
</div>
<script src="./res/js/index.js"></script>
<script>
loadTubeData(null);
load2();
document.addEventListener("keypress", function (e) {
if (e.code === "Enter" || e.code === "NumpadEnter") {
gotoMainPage();
}
});
</script>
</body>
</html>