Scrollable playlist JavaScript Plugins - Demo 6 / 13
Example setup
There are hundreds of ways you can setup a playlist for Flowplayer. The best skill for implementing a custom playlists is definitely the mastery of the CSS language. The following playlist is build with three images and the rest of the look and feel comes from this CSS file.
The scrolling in this playlist is implemented using the jquery.scrollable tool. You can scroll through the items by clicking on the arrows, using the cursor keys, or with your mousewheel.
Palm trees and a sun
0:20 min Playing around with toes
0:20 min Small lake and a bicycle
0:20 min Hotel Room 213 In San Fransisco
0:20 min Some Hebrew writings
0:20 min
0:20 min Playing around with toes
0:20 min Small lake and a bicycle
0:20 min Hotel Room 213 In San Fransisco
0:20 min Some Hebrew writings
0:20 min
$(function() {
// setup scrolling for the playlist elements
$("div.playlist").scrollable({
items:'div.clips',
vertical:true,
next:'a.down',
prev:'a.up'
});
// setup player
$f("player", "http://releases.flowplayer.org/swf/flowplayer-3.2.7.swf", {
clip: {baseUrl: 'http://blip.tv/file/get'}
// use playlist plugin to enable playlist items work as movie clips
}).playlist("div.clips");
});
Here is documentation for the playlist plugin.
Show me a standalone version