HTML5 Programming Tutorial | Learn HTML5 Audio Player - Playlist Functionality

preview_player
Показать описание

Playlist Functionality

■ Thank You!!! A Comment would be appreciated :)

Also, Don't forget to hit the "Like" button, and make sure to subscribe to the Eduonix Learning Solution Channel for more videos

➢ Follow us on other social networks :
Рекомендации по теме
Комментарии
Автор

great tutorial, now it would be nice to add some features. I added a mute/unmute button which works well except that I don't know how to memorize the volume level before mute. here is what i did : //Mute button
$('#mute, #unmute').click(function muteVolume() {
if (audio.muted) {
audio.muted = false;
$('#unmute').hide();
$('#mute').show();
$('#volume').val(8);

}
else {
audio.muted = true;
$('#unmute').show();
$('#mute').hide();
$('#volume').val(0);
}
});
some help ?

TiakoBe
Автор

This is interesting... I'm a newbee, I will appreciate it if you could give me the function call to make this audio player crawl the playlist and play it continuously, i.e., from the first child to the last, then stop when done, thanks a lot...

edjuan
Автор

How add all song that it are on the songs path?

rodrigozaninetti
Автор

why dont you show us - the file: js/jquery.js?... i tryed it and it didnt work at all at my website... i could imagine this is, because i dont know what this jquery-file contains... or why u have referenced it? can u explain this pls, too?...

timolange