December 26, 201213 yr Hi folks I am having a massive problem with this javascript coding and wondered if anyone can help? The slideshow works fine for the first 14 images but after that they do this fast scroll thing (like the photos slideshow here:http://www.jennyandgrayden.com) I have a feeling it might be something to do with the easing section in the first paragraph, but I am not sure. Can any of you help please? Thanks! $('#section-3 .slideshow').jcarousel({ scroll: 1, animation: 500, easing: 'easeInOutSine', wrap: 'last', initCallback: photos_initCallback, itemVisibleInCallback: photos_activeSlide, }); function photos_initCallback(carousel) { $('#section-3 .slideshow-control li').bind('click', function() { $('#section-3 .slideshow-control li').removeClass('active'); $(this).addClass('active'); carousel.scroll($.jcarousel.intval($(this).text())); return false; }); }; function photos_activeSlide(carousel, object, intval, state) { intval--; $('#section-3 .slideshow-control li').removeClass('active'); $('#section-3 .slideshow-control li:eq('+intval+')').addClass('active'); } $('#section-3 .slideshow-control').width( ($('#section-3 .slideshow-control li').length * 30) + 'px');
December 29, 201213 yr I think there was a bug in jquery where you couldn't animate from -10000 I've tried the try the latest jquery with your code seems to fix it http://scriptsrc.net/
Create an account or sign in to comment