我正在使用这个插件: http://www.smoothdivscroll.com/
当页面以chrome格式加载时,我遇到自动滚动工作的问题。它会在Firefox,IE和Safari中自动滚动,但我无法在Google Chrome中滚动加载。任何建议将不胜感激!
以下是我正在构建的网页的链接: http://www.gerardtonti.com/ArtExpo/index.html
谢谢!
格里
答案 0 :(得分:0)
我对Chrome也有同样的问题,我唯一想到的是Chrome并不是因为使用autoScrollingStep = 1选项一次滚动1个像素而感到兴奋。
所以,我增加了像素步数,并减慢了间隔。问题是它现在在Chrome中并不完全“平滑”。
$(document).ready(function () {
// Initialization
$("div#makeMeScrollable").smoothDivScroll({
autoScrollingMode: "onStart",
autoScrollingDirection: "endlessLoopRight",
autoScrollingStep: 3, // anything less than 3 in Chrome doesn't work
autoScrollingInterval:20 // default is 10ms, increase so it looks like you want.
});
});
也许tkhan会提供更好的信息。