JS music player that resembles a sony walkman from 2008 doqmeat.com/notebook/F2U/preview/walkman
html-template
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

fixed marquee on chrome

+3 -1
+3 -1
main.js
··· 101 101 102 102 // update current song name on bottom bar in playlist screen 103 103 current_song_playing.innerHTML = 104 - "<marquee scrollamount='3'>" + track_list[index].name + "</marquee>"; 104 + "<marquee direction='left' scrollamount='3' behavior='scroll'>" + 105 + track_list[index].name + 106 + "</marquee>"; 105 107 106 108 updateTimer = setInterval(seekUpdate, 1000); 107 109