我已经使 scrollingHotSpot 左右区域不透明,这意味着当我加载页面时,第一个图像被切到左边。当我使用 scrollToElement 函数时会发生同样的问题。
为了修复被切断的第一张图像,我使用了这个,效果很好:
#makeMeScrollable div.scrollableArea img{
padding: 0 30 0 30;} //as my scrollinghotspots are 30px wide
我的 scrollToElement 图像仍然被切断到左侧:
$("#jumpToPrint").click(function () {
$("div#makeMeScrollable").smoothDivScroll("scrollToElement", "id", "imgPrint");
});
尝试使用以下方法,但没有解决问题:
$("div#makeMeScrollable").smoothDivScroll("scrollToElement", "id", "imgPrint").offset().left - 30;
非常感谢任何帮助,干杯!