-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
119 lines (118 loc) · 4.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Svelte + TS + Vite App</title>
<style>
#app {
display: flex;
justify-content: center;
align-items: center;
max-width: 60rem;
min-height: 100vh;
margin: auto;
}
.aplayer-wrap {
width: 600px;
max-width: 100%;
margin: 20px 0 40px;
display: flex;
flex-direction: column;
min-height: 700px;
height: 80vh;
justify-content: space-evenly;
}
</style>
</head>
<body>
<div id="app">
<div class="aplayer-wrap">
<s-aplayer
audio='[
{"name": "光るなら",
"artist": "Goose house",
"url": "http://localhost:5000/svelte-aplayer/hikarunara.mp3",
"lrc": "http://localhost:5000/svelte-aplayer/hikarunara.lrc",
"cover": "http://localhost:5000/svelte-aplayer/hikarunara.jpg"
},
{"name": "神奇的糊塗魔藥",
"artist": "林家謙",
"url": "http://localhost:5000/svelte-aplayer/margic-sillines.mp3",
"lrc": "http://localhost:5000/svelte-aplayer/margic-silliness.lrc",
"cover": "http://localhost:5000/svelte-aplayer/margic-sillines.jpg"
},
{"name": "君の知らない物語",
"artist": "supercell",
"url": "http://localhost:5000/svelte-aplayer/bakemonogatari-ed.mp3",
"lrc": "http://localhost:5000/svelte-aplayer/bakemonogatari-ed.lrc",
"cover": "http://localhost:5000/svelte-aplayer/bakemonogatari-ed.jpg"
},
{"name": "「戦場ヶ原、蕩れ」",
"artist": "神前暁",
"url": "http://localhost:5000/svelte-aplayer/senjougahara.mp3",
"cover": "http://localhost:5000/svelte-aplayer/senjougahara.jpg"
}
]'
></s-aplayer>
<s-aplayer
list_folded="true"
audio='[
{"name": "神奇的糊塗魔藥",
"artist": "林家謙",
"url": "http://localhost:5000/svelte-aplayer/margic-sillines.mp3",
"lrc": "http://localhost:5000/svelte-aplayer/margic-silliness.lrc",
"cover": "http://localhost:5000/svelte-aplayer/margic-sillines.jpg"
},
{"name": "君の知らない物語",
"artist": "supercell",
"url": "http://localhost:5000/svelte-aplayer/bakemonogatari-ed.mp3",
"lrc": "http://localhost:5000/svelte-aplayer/bakemonogatari-ed.lrc",
"cover": "http://localhost:5000/svelte-aplayer/bakemonogatari-ed.jpg"
},
{"name": "「戦場ヶ原、蕩れ」",
"artist": "神前暁",
"url": "http://localhost:5000/svelte-aplayer/senjougahara.mp3",
"cover": "http://localhost:5000/svelte-aplayer/senjougahara.jpg"
}
]'
></s-aplayer>
<s-aplayer
list_folded="true"
audio='[
{"name": "「戦場ヶ原、蕩れ」",
"artist": "神前暁",
"url": "http://localhost:5000/svelte-aplayer/senjougahara.mp3",
"cover": "http://localhost:5000/svelte-aplayer/senjougahara.jpg"
},
{"name": "神奇的糊塗魔藥",
"artist": "林家謙",
"url": "http://localhost:5000/svelte-aplayer/margic-sillines.mp3",
"lrc": "http://localhost:5000/svelte-aplayer/margic-silliness.lrc",
"cover": "http://localhost:5000/svelte-aplayer/margic-sillines.jpg"
},
{"name": "君の知らない物語",
"artist": "supercell",
"url": "http://localhost:5000/svelte-aplayer/bakemonogatari-ed.mp3",
"lrc": "http://localhost:5000/svelte-aplayer/bakemonogatari-ed.lrc",
"cover": "http://localhost:5000/svelte-aplayer/bakemonogatari-ed.jpg"
}
]'
></s-aplayer>
<s-aplayer
list_folded="true"
mini="true"
audio='{
"name": "君の知らない物語",
"artist": "supercell",
"url": "http://localhost:5000/svelte-aplayer/bakemonogatari-ed.mp3",
"lrc": "http://localhost:5000/svelte-aplayer/bakemonogatari-ed.lrc",
"cover": "http://localhost:5000/svelte-aplayer/bakemonogatari-ed.jpg"
}'
></s-aplayer>
</div>
</div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>