Wilto / Dynamic-Carousel

A carousel plugin built for responsive layouts. There are many like it, but this one is mine.
matmarquis.com/carousel/
472 stars 112 forks source link

Auto rotate issue on hover #90

Open vblig opened 11 years ago

vblig commented 11 years ago

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?

deepu9 commented 11 years ago

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.

nickdelfico commented 9 years ago

On line 435 change to:

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