-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
25 lines (15 loc) · 781 Bytes
/
app.js
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
console.log("Welcome to Spotify");
let songIndex=0;
let audioElement=new Audio('1.mp3');
let masterPlay=document.getElementById('masterPLay');
let myProgressBar=document.getElementById('myProgressBar');
let songs=[
{songName :"Salam-e-Ishq",filePath:"song/1.mp3", coverPath:"covers/1.jpg"},
{songName :"Salam-e-Ishq",filePath:"song/1.mp3", coverPath:"covers/1.jpg"},
{songName :"Salam-e-Ishq",filePath:"song/1.mp3", coverPath:"covers/1.jpg"},
{songName :"Salam-e-Ishq",filePath:"song/1.mp3", coverPath:"covers/1.jpg"},
{songName :"Salam-e-Ishq",filePath:"song/1.mp3", coverPath:"covers/1.jpg"},
{songName :"Salam-e-Ishq",filePath:"song/1.mp3", coverPath:"covers/1.jpg"},
]
// let audioElement =new Audio('1.mp3');
document.addEventListener('time')