我在github插件中添加了平滑滾動效果。平滑滾動插件不允許我向下滾動頁面
github.com/simov/simplr-smoothscroll
我在呼叫出局添加效果:
<script src="http://cdnjs.cloudflare.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/jquery-mousewheel/3.0.6/jquery.mousewheel.min.js"></script>
<script src="http://simov.github.io/simplr-smoothscroll/lib/jquery.simplr.smoothscroll.js"></script>
然後,我添加了效果驗證碼:
$(function() { $.srSmoothscroll() });
在我做完這些後,我的頁面不再滾動。它只是捲起來。爲什麼這不能正常工作?
我將此上的網站是這個網頁從網站:
http://realtorcatch.com/test_index
,我想它的模型後:
http://www.templatemonster.com/demo/51054.html
在githubs網站,它說,用法是這樣的:
$(function() {
$.srSmoothscroll({
// defaults
step: 55,
speed: 400,
ease: 'swing',
target: $('body'),
container: $(window)
})
})
雖然這並沒有幫助我的情況。
有沒有人有任何想法,爲什麼這不滾動下來?
仍在尋找解決方案... – BigMan