jQuery Smooth Div Scroll WP - 当鼠标没有覆盖图像时,如何再次启动自动滚动?

时间:2013-04-23 22:16:53

标签: wordpress html scroll alignment

我需要你的帮助: 我正在使用带有wordpress的Smooth Div Scroll

  • 有没有办法“当鼠标悬停时停止自动滚动”,“当鼠标未结束时开始自动滚动”? 现在,自动滚动有效但当我把鼠标放在上面时,它会停止并且不会再次启动。

我看到它在这个网站上工作http://broadcast-architech.com/但是没有箭头,我想保留它们,以及鼠标滚动。

提前感谢您的帮助。

1 个答案:

答案 0 :(得分:0)

代码看起来像这样:

// Initialization
var myScroller = $("div#makeMeScrollable").smoothDivScroll({
    autoScrollingMode: 'onStart',
    autoScrollingDirection: 'endlessLoopLeft'
});

myScroller.on('mouseenter', function(){
    myScroller.smoothDivScroll("stopAutoScrolling");
}).on('mouseleave', function(){
    myScroller.smoothDivScroll("startAutoScrolling");
});

这是一个演示:

http://jsfiddle.net/tkahn/3McmN/2/