-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
101 lines (90 loc) · 3.26 KB
/
Copy pathindex.html
File metadata and controls
101 lines (90 loc) · 3.26 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
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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<title>treert</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="./global.css">
</head>
<body>
<div class="container">
<!-- Header -->
<header class="header">
<div class="avatar">T</div>
<h1>treert</h1>
<p>一些自用小工具和折腾记录</p>
</header>
<!-- Projects -->
<div class="project-grid">
<a class="card" href="http://treert.github.io/llm-tokenizer/">
<div class="card-icon" style="background:#e8e0f8;">🔢</div>
<div class="card-body">
<h3>LLM Tokenizer</h3>
<p>浏览器中计算和可视化文本 Token,支持 DeepSeek 等模型</p>
<span class="tag">工具</span>
</div>
</a>
<a class="card" href="./ue-consolehelp/ue5.html">
<div class="card-icon" style="background:#e8f4fd;">⚙️</div>
<div class="card-body">
<h3>UE5 Console Help</h3>
<p>Unreal Engine 5 控制台变量与命令速查</p>
<span class="tag">工具</span>
</div>
</a>
<a class="card" href="./ue-consolehelp/ue4.html">
<div class="card-icon" style="background:#fdf2e8;">🔧</div>
<div class="card-body">
<h3>UE4 Console Help</h3>
<p>Unreal Engine 4 控制台变量与命令速查</p>
<span class="tag">工具</span>
</div>
</a>
<a class="card" href="./char_code_tool/index.html">
<div class="card-icon" style="background:#e8f8e8;">🔤</div>
<div class="card-body">
<h3>字符编码工具</h3>
<p>字符串转 UTF-8 转义序列,Ctrl+Enter 快捷转换</p>
<span class="tag">工具</span>
</div>
</a>
<a class="card" href="./test_font/index.html">
<div class="card-icon" style="background:#f8f0e8;">🔡</div>
<div class="card-body">
<h3>字体显示测试</h3>
<p>常见中英文字体的渲染效果对比</p>
<span class="tag">参考</span>
</div>
</a>
<a class="card" href="http://treert.github.io/2048">
<div class="card-icon" style="background:#fde8f0;">🎮</div>
<div class="card-body">
<h3>2048</h3>
<p>经典 2048 游戏,抠了 bilibili 的图</p>
<span class="tag">游戏</span>
</div>
</a>
<a class="card" href="http://treert.github.io/2048/my2048">
<div class="card-icon" style="background:#e8e8fd;">🧩</div>
<div class="card-body">
<h3>2048 拼图版</h3>
<p>2048 魔改成的拼图小游戏</p>
<span class="tag">游戏</span>
</div>
</a>
<a class="card" href="http://treert.github.io/jquery.ripples/html">
<div class="card-icon" style="background:#e8f8f8;">🌊</div>
<div class="card-body">
<h3>水波效果</h3>
<p>学习 WebGL,一个鼠标交互的水波纹特效</p>
<span class="tag">Demo</span>
</div>
</a>
</div>
<!-- Footer -->
<footer class="footer">
Hosted on <a href="https://github.com/treert/treert.github.io">GitHub Pages</a>
</footer>
</div>
</body>
</html>