Skip to content

Scroll to specific item on responsive carousel #838

Open
@daniellelecomte

Description

@daniellelecomte

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

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions