<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Auto-height sections size - fullPage.js</title>
<link rel="stylesheet" type="text/css" href="./css/jquery.fullPage.css" />
<script src="http://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js"></script>
<script type="text/javascript" src="./js/jquery.fullPage.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$('#fullpage').fullpage({
anchors: ['page1', 'page2', 'page3', 'page4'],
sectionsColor: ['yellow', 'orange', '#C0C0C0', '#ADD8E6'],
});
});
</script>
<style>
.section {
text-align:center;
font-size: 3em;
}
.content{
margin:50px
}
</style>
</head>
<body>
<p id="fullpage">
<p class="section">One</p>
<p class="section">Two</p>
<p class="section fp-auto-height">
<p class="content">Three</p>
</p>
<p class="section fp-auto-height">
<p class="content">Four</p>
</p>
</p>
</body>
</html>
Dies ist mein Code fullpage.js und fullpage.css, den ich von der GitHub-Adresse von fullpagejs heruntergeladen habe;
Ich habe eine Kopie der von GitHub bereitgestellten Demo-Code-Adresse kopiert, aber der Effekt auf die Demo war nicht sichtbar<Es scheint, dass fp-auto-height nicht wirksam wurde>
Bitte gebt mir einen Rat, bitte gebt mir einen Rat
css,js,html都是从官方给的demo中复制的 ,引用的fullpage.js,fullpage.css也是从GitHub上下载的 为啥没有出现 官方demo的效果呢