纠结了好久,就是没有效果出现。。。不知道为什么
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=no"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/fullPage.js/2.6.7/jquery.fullPage.css"/>
</head>
<body>
<div id="fullpage">
<div><h1>第一</h1></div>
<div><h1>第二</h1></div>
<div><h1>第三</h1></div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/fullPage.js/2.6.7/jquery.fullPage.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.0.0/jquery.js"></script>
<script>
$(document).ready(function(){
$('#fullpage').fullpage();
});
</script>
</body>
</html>