代码一样怎么就效果不同呢,还有我的那个幻灯片的箭头没有,div也要清除浮动
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=no"/>
<title>无标题文档</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/fullpage.js/2.6.7/jquery.fullpage.css"/>
<style>
*{margin:0; padding:0;}
body{
color:#fff;
}
.slide{
text-align:center;
float:left;
}
</style>
</head>
<body>
<div id="fullpage">
<div class="section ">
<div><h1>这是第一张</h1></div>
<div><h1>这是第二张</h1></div>
<div><h1>这是第三张</h1></div>
<div><h1>这是第四张</h1></div>
</div>
<div><h1>这是第二屏</h1></div>
<div><h1>这是第三屏</h1></div>
<div><h1>这是第四屏</h1></div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.0.0/jquery.js">
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/fullPage.js/2.6.7/jquery.fullPage.js">
</script>
<script>
$(document).ready(function(){
$('#fullpage').fullpage({
sectionsColor:['#c7e5de','#feccc5','#a7c7a0','#c7abbf'],
});
});
</script>
</body>
</html>