Skip to content

Latest commit

 

History

History
23 lines (20 loc) · 473 Bytes

File metadata and controls

23 lines (20 loc) · 473 Bytes

Installation

To setup autoscrolling, just call jcarouselAutoscroll() on the carousel root element:

$(function() {
    $('.jcarousel')
        .jcarousel({
            // Core configuration goes here
        })
        .jcarouselAutoscroll({
            interval: 3000,
            target: '+=1',
            autostart: true
        })
    ;
});

See Configuration for more information about the configuration options.