jQuery Smooth Div Scroll WP - 鼠标不在图像上时如何重新开始自动滚动?

请我需要你的帮助: 我使用平滑滚动股利与WordPressjQuery Smooth Div Scroll WP - 鼠标不在图像上时如何重新开始自动滚动?

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

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

在此先感谢您的帮助。

回答:

的代码可能是这个样子:

// 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/

以上是 jQuery Smooth Div Scroll WP - 鼠标不在图像上时如何重新开始自动滚动? 的全部内容, 来源链接: utcz.com/qa/266378.html

回到顶部