2022-12-28 10:30:18 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
|
|
|
<html lang="en">
|
|
|
|
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<title>403</title>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
2023-02-03 17:02:28 +00:00
|
|
|
<link rel="icon" href="https://cdn.gh.ink/image/avatar/Bigsk.jpg" type="image/jpeg">
|
2023-02-02 15:45:58 +00:00
|
|
|
<link type="text/css" rel="stylesheet" href="https://www.ianxia.com/static/css/errors.css" />
|
2023-02-03 17:02:28 +00:00
|
|
|
<link rel="stylesheet" href="https://cdn.gh.ink/assembly/aplayer/1.10.0/APlayer.min.css">
|
2023-02-09 17:43:36 +00:00
|
|
|
<script src="https://cdn.gh.ink/js/vue/2.6.14/vue.min.js"></script>
|
|
|
|
<script src="https://cdn.gh.ink/js/axios/1.1.3/axios.min.js"></script>
|
2022-12-28 10:30:18 +00:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<div class="error-page">
|
|
|
|
<div>
|
|
|
|
<h1 data-h1="403">403</h1>
|
|
|
|
<p data-p="FORBIDDEN">FORBIDDEN</p>
|
2023-02-02 15:45:58 +00:00
|
|
|
<div id="aplayer"></div>
|
2022-12-28 10:30:18 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2023-02-03 17:02:28 +00:00
|
|
|
<script src="https://cdn.gh.ink/assembly/aplayer/1.10.0/APlayer.min.js"></script>
|
2023-02-02 15:45:58 +00:00
|
|
|
<script>
|
2023-02-09 17:43:36 +00:00
|
|
|
new Vue({
|
|
|
|
el: '#app',
|
|
|
|
mounted () {
|
|
|
|
axios
|
|
|
|
.get('https://api.gh.ink/404music')
|
|
|
|
.then(function (response) {
|
|
|
|
const ap = new APlayer({
|
|
|
|
container: document.getElementById('aplayer'),
|
|
|
|
autoplay: false,
|
|
|
|
loop: 'all',
|
|
|
|
listFolded: true,
|
|
|
|
theme: '#5A5C6C',
|
|
|
|
order: "random",
|
|
|
|
audio: response.data.content
|
|
|
|
});
|
|
|
|
})
|
|
|
|
.catch(function (error) {
|
|
|
|
console.log(error);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
})
|
2023-02-02 15:45:58 +00:00
|
|
|
</script>
|
2022-12-28 10:30:18 +00:00
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|