-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
46 lines (43 loc) · 1.53 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
36
37
38
39
40
41
42
43
44
45
46
<!doctype html>
<html lang="cn">
<head>
<meta charset="UTF-8">
<title>ただ一人の楽園</title>
<link rel="stylesheet" href="inc/pixivwall.css">
</head>
<body>
<div id="loading">
<img src="inc/loading.png" alt="" id="preloader" />
<p>
努力地加载图片
<span id="loading-process"></span>
</p>
</div>
<div id="wall-wrapper"></div>
<div id="origins"></div>
<div id="info">
<p>随机壁纸来自<a href="https://konachan.com/" id="konachan" target="_blank">Konachan</a> | 可能需要科学访问 | 每24小时刷新</p>
</div>
<script>
DURATION = .4;
DELAY = 6;
CUBE_SIZE = 100;
PRELOAD = 5;
</script>
<script src="https://unpkg.com/jquery@3.3.1/dist/jquery.js"></script>
<script src="https://unpkg.com/animejs@2.2.0/anime.min.js"></script>
<script src="inc/pixivwall.animations.js"></script>
<script src="inc/pixivwall.js"></script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-24680734-2']);
_gaq.push(['_setDomainName', 'thec.me']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</body>
</html>