web-font/index.html
崮生(子虚) 8273508c79 feat: StatsPanel 视口内才轮询 + 底部进度条动画
- IntersectionObserver + document.visibilityState 双条件控制轮询
- 卡片底部进度条 (scaleX 动画),每次刷新数据后重启动画
- 避免不可见时浪费请求
- bump version to 1.11.1
2026-07-30 17:26:24 +08:00

20 lines
703 B
HTML
Raw 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="zh-CN">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!--
SEO 元信息title/description/OG/JSON-LD全部由 useHead 在组件中程序化管理,
SSG 构建时会自动注入到各页面的 HTML <head> 里。
这里只保留最基础的 charset 和 viewport。
-->
<title>WebFont — 在线字体裁剪 | 按需加载 | 免费开源</title>
</head>
<body>
<div id="app"></div>
<script src="/webfont-sdk.js"></script>
<script type="module" src="/src/main.ts"></script>
</body>
</html>