0

我遇到了一个问题,鼠标悬停时似乎没有激活正确的热点。不过,左边似乎工作正常。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
    });
});

是否有任何可能导致此问题的跳出?

谢谢!担

4

1 回答 1

1


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

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

div#makeMeScrollable {
position: relative;
}

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

div.scrollingHotSpotRight {
right: 0;
}

就这样。

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

于 2012-08-04T13:32:35.630 回答