问题描述
JCarousel最近发生了变化(2011年1月)。过去有一种方法可以通过自动滚动实现悬停。
使用新版本我无法解决如何让autoscroll停止悬停:
我希望滚动停止在mouseover上并在鼠标悬停时重新开始。
有什么建议吗?
示例代码在这里 -
Jcarousel这里:github.com/jsor/jcarousel
链接到JQuery + javascript来加载大拇指 -
将此代码添加到您的jcarousel initCallback(carousel)中。
carousel.clip.hover( function(){
carousel.stopAuto();
},function(){
carousel.startAuto();
});
JCarousel have recently changed (january 2011).
It used to have a way to implement pause on hover with autoscroll.
With the new version I cannot solve how to get autoscroll to stop on hover:
I would like the scroll to stop on mouseover and start again on mouseout.
Any suggestions?
Example code is here - http://testsite3.dk/jcarousel/
Jcarousel here: github.com/jsor/jcarousel
Link to JQuery + javascript to load thumbs here - http://testsite3.dk/jcarousel/autoscroll.txt
add this code into your jcarousel initCallback(carousel)
carousel.clip.hover(function() {
carousel.stopAuto();
}, function() {
carousel.startAuto();
});
这篇关于jCarousel - 如何在使用自动滚动悬停时暂停?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!