Files
EzVibeR/live2d.html
2026-06-14 16:29:59 +08:00

37 lines
993 B
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!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, initial-scale=1.0" />
<title>Tauri + Vue + TS</title>
<style>
/* 锁定根容器:禁止浏览器在窗口边缘出现滚动条(透明背景窗口尤其敏感,
滚动条在透明边上会非常显眼且会带动整个 layout 偏移)。
内部各 panelchat / waifu自己管自己的 overflow。 */
html, body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
overflow: hidden;
background: transparent;
}
#live2d-app {
width: 100vw;
height: 100vh;
overflow: hidden;
}
</style>
<script src="/assets/live2dcubismcore.min.js"></script>
<script src="/assets/live2d.min.js"></script>
</head>
<body>
<div id="live2d-app"></div>
<script type="module" src="/src/live2d/App.ts"></script>
</body>
</html>