-
Notifications
You must be signed in to change notification settings - Fork 112
/
local.html
132 lines (126 loc) · 5.64 KB
/
local.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<title>戳泡泡</title>
<link rel="stylesheet" href="style/picnic.min.css">
<link rel="stylesheet" type="text/css" href="style/main.css">
<link rel="stylesheet" type="text/css" href="style/font.css">
<link rel="icon" href="favicon.png">
<script src="scripts/launchgame.js"></script>
<script src="scripts/downloader.js"></script>
<script src="scripts/addbeatmaplist.js"></script>
<script src="scripts/settings.js"></script>
<script src="scripts/jsloader.js"></script>
<script src="scripts/lib/localforage.min.js"></script>
</head>
<body>
<div class="game-area" id="game-area" hidden>
</div>
<div class="pause-menu" id="pause-menu" hidden>
<div class="paused-title">paused</div>
<div class="button-list">
<div class="pausebutton continue" id="pausebtn-continue">
<div class="inner">Continue</div>
</div>
<div class="pausebutton retry" id="pausebtn-retry">
<div class="inner">Retry</div>
</div>
<div class="pausebutton quit" id="pausebtn-quit">
<div class="inner">Quit</div>
</div>
</div>
</div>
<nav id="main-nav">
<div class="nav-link">
<a href="index.html" class="brand">Osaka Salmon University!</a>
<a href="new.html" class="pseudo button">最新</a>
<a href="hot.html" class="pseudo button">热门</a>
<a href="genre.html" class="pseudo button">分类</a>
</div>
<div class="nav-search">
<form action="search.html">
<input type="text" name="q" placeholder="谱面关键词或sid"/>
<input type="image" class="search-button" src="research.svg">
</form>
</div>
<div class="nav-tool">
<a href="local.html" class="pseudo button active">收藏夹</a>
<a href="faq.html" class="pseudo button">常见问题</a>
<a href="settings.html" class="pseudo button">设置</a>
<a onclick="document.documentElement.requestFullscreen();" class="pseudo button">进入全屏</a>
</div>
</nav>
<div class="main-page" id="main-page">
<div class="main-content">
<div class="beatmap-list" id="beatmap-list">
<!-- to be filled in script -->
</div>
<div class="button" style="width:100%; margin-bottom: 10px;" id="btnmore">加载更多</div>
<div class="text">推荐使用最新版本 Firefox 或 Chrome.</div>
<div class="text">内测版v1.4.3. <a href="https://github.com/111116/osu">Github</a></div>
<div class="text">由<a href="https://osu.sayobot.cn/">Sayobot</a>提供谱面</div>
</div>
<!-- <div class="side-panel">
to be activated in script
</div> -->
<div class="statuslines" id="statuslines">
<div class="progress" id="script-progress">
Scripts
<div class="lds-dual-ring"></div>
</div>
<div class="progress" id="skin-progress">
Skin
<div class="lds-dual-ring"></div>
</div>
<div class="progress" id="sound-progress">
Hitsounds
<div class="lds-dual-ring"></div>
</div>
</div>
</div>
<script>
if (window.localforage) {
window.localforage.getItem("likedsidset", function(err, val){
if (err) {
alert("Error loading liked beatmap list");
return;
}
if (val && val.size) {
list = Array.from(val);
function addlist(startoffset, maxlength) {
for (let i=startoffset; i<list.length && i<startoffset+maxlength; ++i)
addBeatmapSid(list[i]);
if (list.length <= startoffset + maxlength) {
document.getElementById("btnmore").setAttribute("style","display:none;");
}
}
addlist(0,20);
var cur = 20;
document.getElementById("btnmore").onclick = function() {
addlist(cur, 20);
cur += 20;
}
}
else {
document.getElementById("beatmap-list").innerText = "你还没有收藏一首歌曲哦!点击曲目右下角的爱心以收藏这个曲目。";
}
});
}
else {
alert("localforage not supported")
}
</script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-169262247-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-169262247-1');
</script>
</body>
</html>
<!-- attribution -->
<!-- play icon made by https://www.flaticon.com/authors/those-icons -->
<!-- search icon made by https://www.flaticon.com/authors/good-ware -->