mirror of
https://github.com/PlayEdu/h5.git
synced 2025-06-06 14:54:08 +08:00
45 lines
1.3 KiB
HTML
45 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.ico" />
|
|
<meta
|
|
name="viewport"
|
|
content="width=device-width, initial-scale=1.0, viewport-fit=cover"
|
|
/>
|
|
<title>PlayEdu</title>
|
|
<script src="/js/DPlayer.min.js"></script>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
<script type="text/javascript">
|
|
if (
|
|
typeof WeixinJSBridge == "object" &&
|
|
typeof WeixinJSBridge.invoke == "function"
|
|
) {
|
|
handleFontSize();
|
|
} else {
|
|
if (document.addEventListener) {
|
|
document.addEventListener(
|
|
"WeixinJSBridgeReady",
|
|
handleFontSize,
|
|
false
|
|
);
|
|
} else if (document.attachEvent) {
|
|
document.attachEvent("WeixinJSBridgeReady", handleFontSize);
|
|
document.attachEvent("onWeixinJSBridgeReady", handleFontSize);
|
|
}
|
|
}
|
|
function handleFontSize() {
|
|
// 设置网页字体为默认大小
|
|
WeixinJSBridge.invoke("setFontSizeCallback", { fontSize: 0 });
|
|
// 重写设置网页字体大小的事件
|
|
WeixinJSBridge.on("menu:setfont", function () {
|
|
WeixinJSBridge.invoke("setFontSizeCallback", { fontSize: 0 });
|
|
});
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|