Closed (works as designed)
Project:
Views Slideshow
Version:
7.x-3.0
Component:
Cycle
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
5 May 2013 at 14:55 UTC
Updated:
19 Jan 2017 at 01:38 UTC
Jump to comment: Most recent
Comments
Comment #1
yvesvanlaer commentedHey ksaen
I came across the same problem: if my mouse is not on the slideshow container, I wanted to show the first slide.
I solved this with jQuery:
$("#your-slideshow-container-div").mouseout(function() {
Drupal.viewsSlideshow.action({ "action": 'goToSlide', "slideshowID": 'carousel_content_type-block', "slideNum": 0 });
});
Hope this helps someone.
If there is a easier way, please tell me.
Comment #2
nickdickinsonwildeThat's an ideal method of solving that. Don't want to add it to the module (adding everything can cause bloat) but good little snippet to add to your page.