I am currently utilizing lightSlider and I want to create a continuous sliding effect with consistent speed. I do not want any stops or pauses between the images, just a smooth and constant movement. Is it possible to achieve this using lightSlider? Or perhaps there is a better javascript library for sliders that can accomplish this?
Code:
$(window).load(function() {
$('#lightSlider').lightSlider({
item:4,
loop:true,
auto:true,
slideMove:1,
easing: 'linear',
cssEasing: 'ease',
speed:100,
controls:false,
pager:false,
adaptiveHeight:false,
responsive : [
{
breakpoint:800,
settings: {
item:3,
slideMove:1,
slideMargin:6,
}
},
{
breakpoint:480,
settings: {
item:2,
slideMove:1
}
}
]
});
});