songlist
This commit is contained in:
parent
0f5f33328a
commit
611688bdb6
|
|
@ -72,8 +72,9 @@ let n = 0;
|
|||
function _playSong() {
|
||||
let song = songs[n] ?? songs[n = 0];
|
||||
audio.src = song.href;
|
||||
if (song.src) popup(`\u266b - ${song.src} (${song.artist}) - ${song.name}`);
|
||||
else popup(`\u266b - ${song.artist} - ${song.name}`);
|
||||
popup(song.src
|
||||
? `\u266b - ${song.src} (${song.artist}) - ${song.name}`
|
||||
: `\u266b - ${song.artist} - ${song.name}`);
|
||||
audio.play();
|
||||
play.children[1].textContent = '\u23F8'
|
||||
}
|
||||
|
|
|
|||
|
|
@ -125,6 +125,24 @@
|
|||
"href": "/music/1-07. Virtual Storm Hard Arrange.mp3",
|
||||
"src": "ブルーアーカイブ"
|
||||
},
|
||||
{
|
||||
"name": "右往左往",
|
||||
"artist": "平田博信",
|
||||
"href": "/music/06. 平田博信 - 右往左往.mp3",
|
||||
"src": "君と彼女と彼女の恋。"
|
||||
},
|
||||
{
|
||||
"name": "愛の夢 [orig: Franz Liszt - Liebestraum No. 3]",
|
||||
"artist": "平田博信",
|
||||
"href": "/music/01. 平田博信 - 愛の夢.mp3",
|
||||
"src": "君と彼女と彼女の恋。"
|
||||
},
|
||||
{
|
||||
"name": "衝動・衝動",
|
||||
"artist": "平田博信",
|
||||
"href": "/music/25. 平田博信 - 衝動·衝動.mp3",
|
||||
"src": "君と彼女と彼女の恋。"
|
||||
},
|
||||
{
|
||||
"name": "音に出来る事",
|
||||
"artist": "H.B STUDIO",
|
||||
|
|
|
|||
Loading…
Reference in a new issue