Location: JavaScript
JavaScript Player (using Flash) + Simple PLaylist Controlers!
niftyPlayer + Simple Playlist
use this nice js player.
i added a code JS below for using next and prev buttons.
i added a code JS below for using next and prev buttons.
var playNum = 0;
var songs = Array('/files/mp3/no-woman.mp3', '/files/mp3/sa-leat.mp3', '/files/mp3/fix-you.mp3');
totalSongs = songs.length - 1;
function playNext() {
playNum = playNum + 1;
if (playNum > totalSongs) { playNum = 0 };
niftyplayer('FMrPlayer').loadAndPlay(songs[playNum]);
}
function playPrev() {
playNum = playNum - 1;
if (playNum < 0) { playNum = totalSongs };
niftyplayer('FMrPlayer').loadAndPlay(songs[playNum]);
}
Rate:
Related content
|
06/02/2011
Rate:
Be the first to RankCodeMirror is a JavaScript library that can be used to create a relatively pleasant editor interface.. |
|
|
very simple solution for a big problem 01/12/2010
Rate:
Be the first to Rankproblem with loading JavaScript in the HEAD tag is that scripts load before HTML, makes the site load.. Location: JavaScript / PHP
|
|
27/03/2010
Rate:
Be the first to RankIt’s time for more JavaScript and jQuery goodies here on Noupe. Today we are featuring fresh JavaScript.. Location: JavaScript / jQuery
|
||
|
26/12/2010
Rate:
Be the first to RankFor the past year and a half, we've been pouring our heart into JavaScriptMVC 3.0. So it's with.. |
|











