jQuery Smooth Div Scroll - 右侧热点未激活

时间:2012-05-17 19:32:54

标签: jquery html scroll smooth

我遇到的问题是鼠标悬停时右侧热点似乎没有激活。左边似乎工作正常。 http://christophermoulder.alykee.com/lighting/

这是我正在使用的代码以及css:

$(document).ready(function() {
    $("#makeMeScrollable").smoothDivScroll({ 
        mousewheelScrolling: true,
        visibleHotSpotBackgrounds: 'onstart',
        hotSpotsVisibleTime:5000,
        hotSpotScrollingStep:2,
        hotSpotScrollingInterval:1,
        autoScrollingMode: "",
        autoScrollingDirection: "endlessloopright",
        manualContinuousScrolling: true
    });
});

是否有任何可能导致此问题的事情?

谢谢! 丹

1 个答案:

答案 0 :(得分:1)


因此,您需要一些(正好两个)CSS样式来解决您的问题:

首先,“makeMeScrollable”容器必须具有相对位置:

div#makeMeScrollable {
position: relative;
}

现在,将“scrollingHotSpotRight”中的右侧位置设置为0:

div.scrollingHotSpotRight {
right: 0;
}

就是这样。

PS:我有同样的问题。 ;)