-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
executable file
·35 lines (30 loc) · 1.02 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!-- index.html -->
<html>
<head>
<title>小熊漫漫看</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<meta content="yes" name="apple-mobile-web-app-capable">
<meta content="yes" name="apple-touch-fullscreen">
<meta content="telephone=no,email=no" name="format-detection">
<meta charset="UTF-8">
<script src="./static/vendor.dll.js"></script>
</head>
<body>
<div id="root"></div>
</body>
<script>
var _hmt = _hmt || [];
(function() {
var hm = document.createElement("script");
hm.src = "https://hm.baidu.com/hm.js?8bd3fd28adac6c4df20333933e7bc63b";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();
</script>
<script type="text/javascript">
document.documentElement.style.fontSize = window.screen.width / 10;
document.body.addEventListener('scroll', function() {
return false;
})
</script>
</html>