使用smoothdivscroll构建页面

时间:2012-08-11 15:27:34

标签: jquery smooth-scrolling

我访问了Thomas Kahn的实验室页面http://www.smoothdivscroll.com/lab.html,看看我如何构建一个HTML。在本实验页面上,您可以做出很多选择。但是,有一种简单的方法可以在代码中获得这些选择吗?或者我应该使用实验室页面的源代码来查找它?谁能给我建议?

的Gijs

1 个答案:

答案 0 :(得分:0)

首先下载包含HERE

示例的压缩代码

初始化插件时,您可以更改所需的选项。它们都列出并解释了HERE

在页面上初始化脚本时更改选项/设置是这样的:

<script type="text/javascript">
    $(document).ready(function () {
        $("div#makeMeScrollable").smoothDivScroll({
            // Copy and paste your settings in here for example..
            hotSpotScrolling: false,
            visibleHotSpotBackgrounds: "always"
      });
    });
</script>