Scrollify需要jQuery 1.6 +和jquery.easing.js。
n你的jquery是不是版本太低啊 

解决方案 »

  1.   

    我没弄过这个东西 ,你去官网上看看 ,我觉得就是你引的包不对或者 包有冲突。网上说只要:Scrollify需要jQuery 1.6 +和jquery.easing.js。
      

  2.   

     $.scrollify({
                            section:".test",
                        });你的这里多个逗号。去掉试试。
      

  3.   

    Firebug 看下具体是错在哪里
      

  4.   

    不支持 HTML5 吧?
    到这里下载个示例包 http://download.csdn.net/download/u013819968/7505723
      

  5.   

    不是还有个               <!--[if lt IE 9]>
                    <script src="js/html5shiv.min.js"></script>
                    <![endif]-->
    吗?你注意到没有?
      

  6.   

    jquery 1.6以上需要用data-name="value"这样来绑定数据,为的是向html5兼容。看看是不是这个原因。
    http://api.jquery.com/data/<div data-role="page" data-last-value="43" data-hidden="true" data-options='{"name":"John"}'></div>
    $( "div" ).data( "role" ) === "page";
    $( "div" ).data( "lastValue" ) === 43;
    $( "div" ).data( "hidden" ) === true;
    $( "div" ).data( "options" ).name === "John";
      

  7.   

     <section  data-section-name="overview">

    </section>
    吧你的section设计成这个样子就可以了 。主要是这个data-section-name。
      

  8.   

       <! doctype html>
        <html>
            <head>
               <script src="http://libs.baidu.com/jquery/1.10.2/jquery.min.js"></script>
    <script src="js/scrollify.min.js"></script>
    <script src="js/jquery.easing.1.3.js"></script>
                <script>
                    $(function(){
                        $(".test").css({"height":$(window).height()});
                        $.scrollify({
                            section:".test",
                        });
                    });
                </script>
                <style>
                    .test{
                        width: 100%;
                    }
                    .red{
                        background-color: red;
                    }
                    .blue{
                        background-color: blue;
                    }
                </style>
            </head>
            <body>
                <section class="test red" data-section-name="overview">fffffffffffff</section>
                <section class="test blue" data-section-name="overview">fffffffffffff</section>
            </body>
            
        </html>