1
今天我的問題是,正在運行的股票代碼只滾動一次。 「makeMeScrollable」包含應該無限滾動的文本,但直到文本結尾才滾動。任何想法可能會造成這種情況?螢火顯示沒有問題SmoothDivScroll的「正在運行的股票代碼」只滾動一次
這裏是我的代碼:
這是頭:
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.1/jquery.min.js"></script>
<script src="js/jquery-ui-1.8.23.custom.min.js"></script>
<script src="js/jquery.mousewheel.min.js"></script>
<script src="js/jquery.smoothdivscroll-1.3-min.js"></script>
<script type="text/javascript">
// Initialize the plugin with no custom options
$(document).ready(function() {
// None of the options are set
$("#makeMeScrollable").smoothDivScroll({
autoScrollingMode: "always",
autoScrollingDirection: "endlessLoopRight",
autoScrollingStep: 1,
autoScrollingInterval: 15
});
$("#makeMeScrollable").bind("mouseover", function() {
$("#makeMeScrollable").smoothDivScroll("stopAutoScrolling");
});
$("#makeMeScrollable").bind("mouseout", function() {
$("#makeMeScrollable").smoothDivScroll("startAutoScrolling");
});
});
</script>
這是身體:
<div id="makeMeScrollable">
<p>this contains very long text</p>
</div>