mirror of
https://ghproxy.com/https://github.com/StreakingMan/solvable-sheep-game
synced 2025-05-23 14:18:14 +08:00
60 lines
2.2 KiB
HTML
60 lines
2.2 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" />
|
||
<meta
|
||
name="description"
|
||
content="无限道具版羊了个羊、可以通关的羊了个羊"
|
||
/>
|
||
<title>有解的羊了个羊</title>
|
||
<script>
|
||
var _hmt = _hmt || [];
|
||
(function () {
|
||
var hm = document.createElement('script');
|
||
hm.src =
|
||
'https://hm.baidu.com/hm.js?0a5701b62c5da53aa10f9096fccb377c';
|
||
var s = document.getElementsByTagName('script')[0];
|
||
s.parentNode.insertBefore(hm, s);
|
||
})();
|
||
</script>
|
||
</head>
|
||
<body>
|
||
<div id="root"></div>
|
||
<script>
|
||
// vite没有global,手动声明
|
||
var global = global || window;
|
||
</script>
|
||
<script type="module" src="/src/main.tsx"></script>
|
||
<script
|
||
async
|
||
src="//busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js"
|
||
></script>
|
||
<script async>
|
||
// 如果您基于此项目二创,可以删除以下代码
|
||
// 否则请标明原仓库地址
|
||
setTimeout(() => {
|
||
const { hostname } = location;
|
||
if (
|
||
hostname !== 'localhost' &&
|
||
!hostname.endsWith('streakingman.com')
|
||
) {
|
||
const a = document.createElement('a');
|
||
a.setAttribute(
|
||
'href',
|
||
'https://github.com/StreakingMan/solvable-sheep-game'
|
||
);
|
||
a.setAttribute('target', '_blank');
|
||
a.innerText =
|
||
'本项目仅供交流,禁止商业用途,点击查看原github仓库';
|
||
const p = document.createElement('p');
|
||
p.style.textAlign = 'center';
|
||
p.append(a);
|
||
document.body.prepend(p);
|
||
}
|
||
}, 5000);
|
||
</script>
|
||
</body>
|
||
</html>
|