how to stop 3d carousel on mouse click event
I use 3d carousel of http://interface.eyecon.ro/demos/carousel.html Anyone开发者_如何学运维 suggest me how can i stop this carousel on mouse click event with fix position?
Use stopImmediatePropagation()
You could possibly reset the rotation timer. Something like:
clearInterval(rotationTimer)
or perhaps
clearInterval(el.carouselCfg.rotationTimer)
精彩评论