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!
thank you for your solution.