--
You received this message because you are subscribed to the Google Groups "jPlayer: HTML5 Audio & Video for jQuery" group.
To view this discussion on the web visit https://groups.google.com/d/msg/jplayer/-/63oEMj19-x0J.
To post to this group, send email to jpl...@googlegroups.com.
To unsubscribe from this group, send email to jplayer+u...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/jplayer?hl=en.
JJ--
You received this message because you are subscribed to the Google Groups "jPlayer: HTML5 Audio & Video for jQuery" group.
To view this discussion on the web visit https://groups.google.com/d/msg/jplayer/-/rrWLpkV0SVAJ.
$('.jp-playlist').each(function () {
var ul= $('ul', this);
// important for slider to works, 26 is the size of each <li> height, I use the pre defined the list
height since the playslist will only appear after my script. the countmyplaylist var is defined in myplaylist.js, for more
clear view the source of my web, and see what I do
var ulHeight = 26 * countmyplaylist;
var playlistHeight = ulHeight - $(this).outerHeight();
var slider = $('.scrollbar').slider({
range: 'min',
min: 0,
max: playlistHeight,
value: playlistHeight,
orientation: 'vertical',
slide: function (ev, ui) {
ul.css('bottom', '-' + ui.value + 'px');
},
stop: function (ev, ui) {
ul.animate({ 'bottom' : '-' + ui.value + 'px' }, 500, 'linear');
}
});
});--
You received this message because you are subscribed to the Google Groups "jPlayer: HTML5 Audio & Video for jQuery" group.
To view this discussion on the web visit https://groups.google.com/d/msg/jplayer/-/ZWQi9DwugyAJ.
JJ--
You received this message because you are subscribed to the Google Groups "jPlayer: HTML5 Audio & Video for jQuery" group.
To view this discussion on the web visit https://groups.google.com/d/msg/jplayer/-/rQk3JwKkMaAJ.
To unsubscribe from this group, send email to jplayer+unsubscribe@googlegroups.com.