ai-fe-plugin-fina/index.html

27 lines
811 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="/logo.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>AI校对插件</title>
<script>
function setScaleRoom(){
let zoom = 1;
if(window.innerWidth < 420){
// fixed 当存在屏幕缩放时显示不完整的问题
zoom = (window.innerWidth / 420).toFixed(2);
}
window.document.body.style.zoom = zoom;
}
document.addEventListener('DOMContentLoaded',setScaleRoom)
window.addEventListener('resize',setScaleRoom)
</script>
</head>
<body>
<div id="app_ext"></div>
<div id="root"></div>
<script type="module" src="/src/index.tsx"></script>
</body>
</html>