Files
tashow-h5/projects/translate-h5/index.html
2025-09-04 11:29:00 +08:00

40 lines
921 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta
name="viewport"
content="width=device-width, viewport-fit=cover, initial-scale=1.0"
,
/>
<title>tashow-h5</title>
<style>
/* 设置CSS变量用于安全区域 */
/* 防止页面滚动的全局样式 */
html,
body {
margin: 0;
padding: 0;
height: 100%;
overflow: hidden;
-webkit-overflow-scrolling: touch;
-webkit-user-select: none;
-webkit-touch-callout: none;
-webkit-tap-highlight-color: transparent;
position: fixed;
width: 100%;
}
#root {
height: 100%;
overflow: hidden;
}
</style>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>