WPIntell

Source evidence

[Plugin: Logo Slideshow] Looping Functionality

Logo Slideshow · support · 2010-11-13T22:17:00+00:00

complaintsentiment
mediumseverity
0.74relevance
2replies
Evidence linked to opportunitycommercial context

Proof Health

Open evidence

Commercial opportunities need traceable source links before they are treated as build-worthy.

3 / 33 rows with source links

9.1% of this page's analysis has direct source links.

0 build-decision rows missing links

0 rows here require auditable proof before promotion.

30 rows with no attached evidence

0 rows have source counts but still need direct links.

Conversation

support
metality unresolved
Thank 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.

Comments

2 shown
Md Mahmudur Rahman 2010-12-03T01:05:00+00:00

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!

metality 2010-12-04T12:40:00+00:00

thank you for your solution.