40 lines
934 B
HTML
40 lines
934 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>Antd Mobile H5 Templet</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>
|