-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
113 lines (103 loc) · 2.87 KB
/
index.html
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>单 HTML 文件内实现的工具</title>
<style>
body {
margin: 0 auto;
align-items: center;
justify-content: space-around;
display: flex;
flex-wrap: wrap;
}
h1 {
margin: 0;
font-size: medium;
}
p {
margin: 0;
}
.tool-box {
background-color: #f0f0f0;
border-radius: 2vw;
margin-top: 1vw;
margin-bottom: 1vw;
margin-left: 1vw;
margin-right: 1vw;
width: 200px;
height: 100px;
cursor: pointer;
text-align: center;
align-items: center;
transition: transform 0.5s ease, background-color 0.5s ease;
display: flex;
justify-content: center;
flex-direction: column;
}
.tool-box:hover {
background: linear-gradient(45deg, #66ccff, #39C5BB );
color: #fff;
transform: rotate(3deg) scale(1.05);
}
</style>
</head>
<body>
<div class="tool-box" onclick="window.location.href='base64/index.html'">
<h1>base64</h1>
<p>Base64 编码工具。</p>
</div>
<div class="tool-box" onclick="window.location.href='hash/index.html'">
<h1>hash</h1>
<p>哈希工具。</p>
</div>
<div class="tool-box" onclick="window.location.href='rand/index.html'">
<h1>rand</h1>
<p>随机字符串生成工具。</p>
</div>
<div class="tool-box" onclick="window.location.href='qr/index.html'">
<h1>qr</h1>
<p>二维码扫码工具。</p>
</div>
<div class="tool-box" onclick="window.location.href='json/index.html'">
<h1>json</h1>
<p>JSON 格式化工具。</p>
</div>
<div class="tool-box" onclick="window.location.href='pangu/index.html'">
<h1>pangu</h1>
<p>半角和全角中间加空格工具。</p>
</div>
<div class="tool-box" onclick="window.location.href='oneline/index.html'">
<h1>oneline</h1>
<p>去除换行符</p>
</div>
<div class="tool-box" onclick="window.location.href='time/index.html'">
<h1>time</h1>
<p>时间戳转换</p>
</div>
<div class="tool-box" onclick="window.location.href='svg/index.html'">
<h1>svg</h1>
<p>实时展示 svg 效果</p>
</div>
<div class="tool-box" onclick="window.location.href='urlcode/index.html'">
<h1>urlcode</h1>
<p>URL 编码解码工具。</p>
</div>
<div class="tool-box" onclick="window.location.href='utf/index.html'">
<h1>utf</h1>
<p>UTF 编码解码工具。</p>
</div>
<div class="tool-box" onclick="window.location.href='info/index.html'">
<h1>info</h1>
<p>系统信息查看工具。</p>
</div>
<div class="tool-box" onclick="window.location.href='liuren/index.html'">
<h1>六壬</h1>
<p>有事不起卦,无事卦不起</p>
</div>
<div class="tool-box" onclick="window.location.href='empty/index.html'">
<h1>empty</h1>
<p></p>
</div>
</body>
</html>