我一直试图设置utterscroll,我似乎无法
没有明确的指示, 我把两个文件按顺序提供,然后我调用该事件,但没有 https://github.com/debiki/utterscroll
我甚至无法让它在jsfiddle上工作
<script src='jquery-scrollable.js'></script>
<script src='debiki-utterscroll.js'></script>
if (!Modernizr.touch) // if not a smartphone
debiki.Utterscroll.enable({
scrollstoppers: '.CodeMirror, .ui-resizable-handle' });
答案 0 :(得分:0)
现在我添加了一个示例HTML文件,其中显示了如何在页面上启用Utterscroll:
http://rawgit.com/debiki/utterscroll/master/utterscroll-example.html
(从https://github.com/debiki/utterscroll链接)
该页面的作用是将它置于</body>
:
<script src='https://rawgithub.com/debiki/utterscroll/master/debiki-utterscroll.js'></script>
</body>
并在<head>
:
<script type="text/javascript">
jQuery(function($) {
if (!Modernizr.touch) { // if not a smartphone
debiki.Utterscroll.enable();
}
});
</script>