Conversation
supportThank you for this good plugin. Can you add looping functionality please?
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.
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.