Viewing 1 replies (of 1 total)
  • 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!

Viewing 1 replies (of 1 total)
  • The topic ‘[Plugin: Logo Slideshow] great plugin but i looking for more’ is closed to new replies.