I work with this scroller
http://coolcarousels.frebsite.nl/c/2/
I have this setting below.
My problem is that I have set the visible: 4 value and I have 4 images, so it doesn't scroll. If I set it to visible: 3 , then it works as expected. But I want to show all 4 images on one screen when you open the full width of the browser with a resolution of 1920 pixels. So the problem seems. If I set the visible volume of the images that I have, it will stop working.
Is there a way to have all 4 images on the screen at a time and then scroll through them?
$(function() { $('#carousel').carouFredSel({ width: '100%', align: 'left', items: { visible: 4, start: 0, }, scroll: { items: 1, queue : true, fx: "scroll", easing: "swing", duration: 1000, timeoutDuration: 3000 }, prev: '.prev', next: '.next', auto: { easing: "quadratic", button: '.play', pauseOnEvent: 'resume', pauseOnHover: true } }).find(".slide .plusNav").hover( function() { $(this).find("div").slideDown(); }, function() { $(this).find("div").slideUp(); } ); });
source share