i love this plugin work great
only problem once slide start it stop after 1 complete cycle , i want to slide keep going on how to do this
i love this plugin work great
only problem once slide start it stop after 1 complete cycle , i want to slide keep going on how to do this
Hello,
You can add looping functionality by doing the following:
- Edit the image-slideshow.js (\logo-slideshow\scripts) and change the gallerySlide() function as given below:
function gallerySlide()
{
if(slideSpeed!=0){
var leftPos = imageGalleryObj.offsetLeft;
leftPos = leftPos/1 + slideSpeed;
if(leftPos>maxGalleryXPos){
leftPos = maxGalleryXPos;
slideSpeed = -1;
}
if(leftPos<minGalleryXPos){
leftPos = minGalleryXPos;
slideSpeed=1;
}
imageGalleryObj.style.left = leftPos + 'px';
}
setTimeout('gallerySlide()',50);
}
- Actually changing the slideSpeed value will create a looping functionality.
Enjoy!
This topic has been closed to new replies.