This music player is a clone from the popular social network "Myspace" from the mid 2000's.
Clone this repository to your machine.
git clone https://github.com/rodrmig/myspace-music-player
Open index.html
for a live demo. See the following code snippet from js/app.js
for setup.
let settings = {
containerID: 'myspace-music-player',
song: 'Feel_Good.mp3',
artist: 'Syn_Cole',
audioFilePath: 'audio/Syn_Cole-Feel_Good.mp3'
};
let musicPlayer = new MyspaceMusicPlayer(settings);