Dynamic-Carousel icon indicating copy to clipboard operation
Dynamic-Carousel copied to clipboard

Auto rotate issue on hover

Open vblig opened this issue 12 years ago • 2 comments

Hello and thanks for this great plugin!

I have created an auto rotate of this plugin inside of my page and it's working without problems but when I hover on items the auto rotate won't work.

I searched in issues page but couldn't find the same problem.

Now what I can do for resolving that?

vblig avatar Feb 17 '13 12:02 vblig

Hello, I almost have the same issue. When I hover on the slider and move away from it, the whole slideshow stops moving. Can anyone please fix this issue.

deepu9 avatar Mar 07 '13 22:03 deepu9

On line 435 change to:

                    .bind({
                        'mouseenter click touchstart' : function() {
                            clearInterval(auto);
                        },
                        'mouseleave' : function() {
                            clearInterval(auto);
                            auto = setInterval(autoAdvance, speed);
                        }
                    });

nickdelfico avatar Apr 09 '15 16:04 nickdelfico