Skip to content

Commit

Permalink
added two songs in 19_javascript_music_player
Browse files Browse the repository at this point in the history
  • Loading branch information
nitishkhobragade committed Mar 21, 2024
1 parent 66e87df commit 3bb284f
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 1 deletion.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 10 additions & 1 deletion 19_javascript_music_player/player.css
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,20 @@ nav .circle {
box-shadow: 0 5px 10px var(--boxshadow);
}

.song-img {
.img-box {
width: 220px;
height: 220px;
border-radius: 50%;
border: 8px solid var(--white);
box-shadow: 0 10px 60px var(--boxshadow);
overflow: hidden;
margin: 2px auto;
display: flex;
justify-content: center;
}
.song-img {
width: 100%;

}

.music-player h1 {
Expand Down
15 changes: 15 additions & 0 deletions 19_javascript_music_player/player.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,14 @@ const playlist = [
thumbnail: "./media/thumb/dhagala-lagli.jpg",
audioSource: "./media/audio/Dhagala-Lagli-Kala.mp3"
},
// next song
{
title: "Mobile Cover -Khesari",
artist: "Khesari Lal Yadav",
thumbnail: "./media/thumb/mobile_cover_khesari.jpg",
audioSource: "./media/audio/Aisi Ladki Nahi Jiska Lover Nahi(BhojpuriWap.In).mp3"
},
// next song
{
title: "Bhool Bhulaiya 2 Title Track",
artist: "Neeraj Shridhar, MellowD, Bob",
Expand All @@ -73,6 +81,13 @@ const playlist = [
audioSource: "./media/audio/De Taali - Bhool Bhulaiyaa 2 128 Kbps.mp3"
},
// next song
{
title: "Kissa Hum Likhenge -Doli Saja Ke Rakhna",
artist: "Anuradha Paudwal, M.G. Sreekumar",
thumbnail: "./media/thumb/kiss_hum_likhenge.jpg",
audioSource: "./media/audio/Kissa Hum Likhenge - Doli Saja Ke Rakhna 128 Kbps.mp3"
},
// next song
{
title: "Arjan Vailly - Animal",
artist: "Neeraj Shridhar, MellowD, Bob",
Expand Down

0 comments on commit 3bb284f

Please sign in to comment.