Jump to content

Problems with a code


BellaLexington

Recommended Posts

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');

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...