Files
html-tools/tools/base36-decode/app.html
T
2026-01-01 22:03:12 +08:00

299 lines
8.3 KiB
HTML

<!DOCTYPE html>
<html lang="zh-CN">
<head>
<link rel="icon" href="../../favicon.svg">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Base36 解码</title>
<link rel="canonical" href="https://www.htmls.dev/tools/base36-decode/app.html">
<style>
:root {
--accent: #ec4899;
--accent-soft: #ec489933;
--bg-dark: #0f172a;
--text: #0f172a;
--text-muted: #475569;
--border: #e2e8f0;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
background: linear-gradient(135deg, #ec4899 0%, #0f172a 100%);
min-height: 100vh;
padding: 20px;
color: var(--text);
}
.container {
max-width: 1100px;
margin: 0 auto;
}
.header {
text-align: center;
color: white;
margin-bottom: 30px;
}
.header h1 {
font-size: 2.3rem;
margin-bottom: 8px;
}
.header p {
opacity: 0.9;
font-size: 1rem;
}
.card {
background: rgba(255, 255, 255, 0.96);
border-radius: 18px;
padding: 26px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 16px;
}
label {
font-size: 14px;
color: var(--text-muted);
display: block;
margin-bottom: 6px;
}
input[type="text"],
input[type="number"],
textarea,
select {
width: 100%;
padding: 10px 12px;
border: 1px solid var(--border);
border-radius: 10px;
font-size: 14px;
background: white;
}
textarea {
min-height: 160px;
resize: vertical;
}
.row {
display: flex;
gap: 12px;
flex-wrap: wrap;
align-items: center;
margin-top: 10px;
}
.actions {
display: flex;
gap: 10px;
flex-wrap: wrap;
margin-top: 12px;
}
.btn {
padding: 10px 18px;
border-radius: 10px;
border: none;
cursor: pointer;
font-size: 14px;
font-weight: 600;
background: var(--accent);
color: white;
transition: transform 0.2s, box-shadow 0.2s;
}
.btn:hover {
transform: translateY(-1px);
box-shadow: 0 8px 20px rgba(15, 23, 42, 0.2);
}
.btn-secondary {
background: #64748b;
}
.checkbox {
display: inline-flex;
align-items: center;
gap: 6px;
font-size: 13px;
color: var(--text-muted);
}
.meta {
margin-top: 10px;
font-size: 13px;
color: var(--text-muted);
}
.output-box {
background: #f8fafc;
border: 1px dashed var(--border);
padding: 12px;
border-radius: 12px;
margin-top: 16px;
}
.status {
margin-top: 12px;
font-size: 13px;
color: var(--text-muted);
}
.result-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
gap: 12px;
margin-top: 12px;
}
.result-card {
background: #f8fafc;
border-radius: 12px;
padding: 12px;
border: 1px solid var(--border);
}
.result-card h4 {
font-size: 12px;
color: var(--text-muted);
margin-bottom: 6px;
font-weight: 600;
}
.result-card div {
font-size: 15px;
font-weight: 700;
color: var(--accent);
word-break: break-all;
}
.tool-doc-link,
.tool-home-link {
position: fixed;
top: 16px;
padding: 6px 12px;
border-radius: 999px;
font-size: 12px;
font-weight: 600;
color: #0f172a;
background: rgba(255, 255, 255, 0.9);
border: 1px solid rgba(15, 23, 42, 0.12);
text-decoration: none;
letter-spacing: 0.02em;
z-index: 9999;
box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.tool-doc-link {
right: 16px;
}
.tool-home-link {
right: 74px;
}
.tool-doc-link:hover,
.tool-home-link:hover {
background: rgba(255, 255, 255, 1);
border-color: rgba(15, 23, 42, 0.2);
transform: translateY(-1px);
}
</style>
</head>
<body>
<a class="tool-home-link" href="../../index.html">首页</a>
<a class="tool-doc-link" href="index.html">说明</a>
<div class="container">
<div class="header">
<h1>Base36 解码</h1>
<p>将 Base36 字符串还原为十进制数字</p>
</div>
<div class="card">
<div>
<label>Base36 字符串</label>
<input id="input" type="text" placeholder="例如 21i3v9" />
</div>
<div class="actions">
<button class="btn" id="decode">开始解码</button>
<button class="btn btn-secondary" id="copy">复制结果</button>
<button class="btn btn-secondary" id="clear">清空</button>
<button class="btn btn-secondary" id="sample">加载示例</button>
</div>
<div class="status" id="status">等待输入</div>
<div class="output-box">
<label>十进制输出</label>
<textarea id="output" readonly placeholder="十进制结果"></textarea>
</div>
</div>
</div>
<script>
const input = document.getElementById('input');
const output = document.getElementById('output');
const status = document.getElementById('status');
function setStatus(message) {
status.textContent = message;
}
function decodeBase36() {
const value = input.value.trim();
if (!value) {
output.value = '';
setStatus('请输入 Base36 字符串');
return;
}
let text = value.toLowerCase();
let negative = false;
if (text.startsWith('-')) {
negative = true;
text = text.slice(1);
}
if (!/^[0-9a-z]+$/.test(text)) {
output.value = '';
setStatus('包含非法字符');
return;
}
let result = 0n;
for (const char of text) {
const digit = char >= '0' && char <= '9' ? BigInt(char.charCodeAt(0) - 48) : BigInt(char.charCodeAt(0) - 87);
result = result * 36n + digit;
}
output.value = (negative ? '-' : '') + result.toString(10);
setStatus('转换完成');
}
document.getElementById('decode').addEventListener('click', decodeBase36);
document.getElementById('copy').addEventListener('click', () => {
if (!output.value) return;
output.select();
document.execCommand('copy');
});
document.getElementById('clear').addEventListener('click', () => {
input.value = '';
output.value = '';
setStatus('等待输入');
});
document.getElementById('sample').addEventListener('click', () => {
input.value = '21i3v9';
decodeBase36();
});
</script>
<script src="../../assets/clicks.js" defer></script>
</body>
</html>