Open
Description
Hey there! Thanks for such a great tool!
Is it possible to set which item displays first on a responsive carousel? I tried adding scroll with no luck...
(function($) {
$(function() {
var jcarousel = $('.jcarousel');
var lIndex = 5;
jcarousel
.on('jcarousel:reload jcarousel:create', function () {
var carousel = $(this),
width = carousel.innerWidth();
if (width >= 900) {
width = width / 3;
} else if (width >= 600) {
width = width / 2;
} else if (width >= 250) {
width = width / 1;
}
carousel.jcarousel('items').css('width', Math.ceil(width) + 'px');
console.log("index: " + lIndex);
})
.jcarousel({
scroll: lIndex
});
$('.jcarousel-control-prev')
.jcarouselControl({
target: '-=1'
});
$('.jcarousel-control-next')
.jcarouselControl({
target: '+=1'
});
});
})(jQuery);
We are displaying sports scores and want to set the first item you see to be based upon the time of day by setting a var of 'lIndex' as noted in my code.
This is the staging site for reference:
http://www.thesportsarena.net/staging/public_html/#skatesafescorescroller
Any help would be greatly appreciated. Thanks again!
Metadata
Metadata
Assignees
Labels
No labels