基本整页设置不起作用?

Basic Full Page setup is not working?

我正在为我的网站使用 fullPage.js。我去测试它,它没有像预期的那样运行并创建了一个全高页面。我尝试更改脚本和链接,以及使用不同的 jQuery 库。所有来源都是 100% 正确的。有什么线索或建议吗?谢谢。

<!DOCTYPE html>
<html lang="en">
    <head>

        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
        <meta http-equiv="x-ua-compatible" content="ie=edge">

    <!-- Bootstrap / CSS -->
    <link rel="stylesheet" href="css/style.css" type="text/css">
    <link rel="stylesheet" type="text/css" href="jquery.fullPage.css" />
    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.5/css/bootstrap.min.css" integrity="sha384-AysaV+vQoT3kOAXZkl02PThvDr8HYKPZhNT5h/CXfBThSRXQ6jW5DO2ekP5ViFdi" crossorigin="anonymous">

    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
    <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/fullPage.js/2.8.8/jquery.fullPage.js"></script>


    </head>
    <body>

        <div id="fullpage"> <!-- Contains all content that uses FullPage-->
            <div class="section">
                <h1>hello</h1>
            </div>
            <div class="section">
                <h1>hello</h1>
            </div>
            <div class="section">
                <h1>hello</h1>
            </div>
        </div>

        <script>
            $(document).ready(function() {
                $('#wrapper').fullpage();
            });
        </script>


        <!-- jQuery first, then Tether, then Bootstrap JS. -->

        <script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.3.7/js/tether.min.js" integrity="sha384-XTs3FgkjiBgo8qjEjBk0tGmf3wPrWtA6coPfQDfFEY8AnYJwjalXCiosYRBIBZX8" crossorigin="anonymous"></script>
        <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.5/js/bootstrap.min.js" integrity="sha384-BLiI7JTZm+JWlgKa0M0kGRpJbF2J8q+qreVrKBC47e3K6BW78kGLrCkeRX6I9RoK" crossorigin="anonymous"></script>
    </body>
</html>

图书馆::https://cdnjs.com/libraries/fullPage.js

所以你必须更改脚本文件的 src 属性。 因为您使用的是整页的 src 是 jquery.fullPage.js 但那是无效的。

在 src 属性中使用 https://cdnjs.cloudflare.com/ajax/libs/fullPage.js/2.8.8/jquery.fullPage.js

<!DOCTYPE html>
<html lang="en">
    <head>

        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
        <meta http-equiv="x-ua-compatible" content="ie=edge">

        <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
        <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/fullPage.js/2.8.8/jquery.fullPage.js"></script>
        <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.5/css/bootstrap.min.css" integrity="sha384-AysaV+vQoT3kOAXZkl02PThvDr8HYKPZhNT5h/CXfBThSRXQ6jW5DO2ekP5ViFdi" crossorigin="anonymous">
        <link rel="stylesheet" href="css/style.css" type="text/css">
        <link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/fullPage.js/2.8.8/jquery.fullPage.css" />


    </head>
    <body>

        <div id="wrapper"> <!-- Contains all content that uses FullPage-->
            <div class="section">
                <h1>hello</h1>
            </div>
            <div class="section">
                <h1>hello</h1>
            </div>
            <div class="section">
                <h1>hello</h1>
            </div>
        </div>

        <script>
            $(document).ready(function() {
                $('#wrapper').fullpage();
            });
        </script>


        <!-- jQuery first, then Tether, then Bootstrap JS. -->

        <script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.3.7/js/tether.min.js" integrity="sha384-XTs3FgkjiBgo8qjEjBk0tGmf3wPrWtA6coPfQDfFEY8AnYJwjalXCiosYRBIBZX8" crossorigin="anonymous"></script>
        <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.5/js/bootstrap.min.js" integrity="sha384-BLiI7JTZm+JWlgKa0M0kGRpJbF2J8q+qreVrKBC47e3K6BW78kGLrCkeRX6I9RoK" crossorigin="anonymous"></script>
    </body>
</html>

id="wrapper"更改为id="fullpage"

默认结构如下所示:

<div id="fullpage">
    <div class="section">Some section</div>
    <div class="section">
         <div class="slide"> Slide 1 </div>
         <div class="slide"> Slide 2 </div>
         <div class="slide"> Slide 3 </div>
    </div>
    <div class="section">Some section</div>
    <div class="section">Some section</div>
</div>