48 lines
1.3 KiB
HTML
48 lines
1.3 KiB
HTML
<!doctype html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
|
<meta name="theme-color" content="#09111e" />
|
|
<meta name="description" content="Unitree Go2 奖励函数自调参 Agent 工作台" />
|
|
<link rel="icon" href="data:," />
|
|
<title>Go2 自调参 Agent</title>
|
|
<script>
|
|
try {
|
|
document.documentElement.dataset.bootTheme =
|
|
localStorage.getItem('mujoco-platform-theme') === 'light' ? 'light' : 'dark';
|
|
} catch {
|
|
/* 默认深色,启动不依赖存储权限。 */
|
|
}
|
|
</script>
|
|
<style>
|
|
html,
|
|
body,
|
|
#root {
|
|
height: 100%;
|
|
margin: 0;
|
|
}
|
|
body {
|
|
background: #09111e;
|
|
color: #f1f5f9;
|
|
}
|
|
html[data-boot-theme='light'] body {
|
|
background: #f7f9fc;
|
|
color: #172b41;
|
|
}
|
|
.boot-screen {
|
|
display: grid;
|
|
height: 100%;
|
|
place-items: center;
|
|
font:
|
|
13px system-ui,
|
|
sans-serif;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="root"><div class="boot-screen" role="status">正在启动调参工作台…</div></div>
|
|
<script type="module" src="/src/tuning/main.tsx"></script>
|
|
</body>
|
|
</html>
|