-
Notifications
You must be signed in to change notification settings - Fork 0
/
index_zh.html
90 lines (89 loc) · 3.83 KB
/
index_zh.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
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Yumi工具箱 - GCC.AC.CN</title>
<meta name="description" content="Yumi开发的在线工具箱。包含base64编解码、进制转换等等。">
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #f5f5f5;
}
.container {
background-color: #ffffff;
padding: 40px;
border-radius: 8px;
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
width: 90%;
max-width: 600px;
}
h1 {
color: #333;
margin-bottom: 10px;
}
h2 {
color: #555;
margin-top: 15px;
margin-bottom: 10px;
}
ul {
list-style-type: disc;
padding-left: 20px;
margin-bottom: 20px;
}
li {
margin-bottom: 10px;
}
a {
color: #007bff;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-8336276656855850" crossorigin="anonymous"></script>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-DE64VXRT8C"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-DE64VXRT8C');
</script>
</head>
<body>
<div class="container" style="margin-bottom: 5%;">
<h1>Yumi 的工具箱</h1>
<p><a href="index.html" target="_blank">For English version please click here.</a></p>
<p>GitHub: <a href="https://github.com/chn-lee-yumi/tool" target="_blank">https://github.com/chn-lee-yumi/tool</a></p>
<p>欢迎通过 GitHub issue 提建议或反馈。</p>
<h2>工具列表:</h2>
<ul>
<li><a href="https://ffmpeg.gcc.ac.cn/index_zh.html" target="_blank">在线 FFmpeg 格式转换</a> (<a href="https://github.com/chn-lee-yumi/ffmpeg_in_browser">GitHub</a>)</li>
<li><a href="zh/ascii.html" target="_blank">ASCII 转换</a></li>
<li><a href="zh/base_converter.html" target="_blank">进制转换</a></li>
<li><a href="zh/base64.html" target="_blank">Base64 编解码</a></li>
<li><a href="zh/utf8.html" target="_blank">UTF-8 编解码</a></li>
<li><a href="zh/word_count.html" target="_blank">字数和单词统计</a></li>
<li><a href="zh/lcm.html" target="_blank">最小公倍数计算</a></li>
<li><a href="zh/formatter.html" target="_blank">代码格式化(支持JavaScript和HTML)</a></li>
<li><a href="zh/timestamp.html" target="_blank">时间戳和日期转换</a></li>
<li><a href="https://ip.gcc.ac.cn/" target="_blank">查看我的 IP 地址</a></li>
</ul>
<h2>外部工具:</h2>
<ul>
<li><a href="https://mutiny.cz/exifr/" target="_blank">在线 EXIF 读取工具</a> (<a href="https://github.com/MikeKovarik/exifr">GitHub</a>)</li>
<li><a href="https://jupyter.org/try-jupyter/lab/" target="_blank">Jupyter Lab</a></li>
<li><a href="https://pyodide.org/en/stable/console.html" target="_blank">在线 Python 环境</a> (<a href="https://pyodide.org/en/stable/">文档</a>)</li>
<li><a href="https://copy.sh/v86/" target="_blank">网页版x86虚拟机</a> (<a href="https://github.com/copy/v86">GitHub</a>)</li>
</ul>
</div>
</body>
</html>