scrollOverflow属性在我的项目中无法正常工作,当内容溢出时没有滚动条,所以我写了一个简单的示例来找出问题所在。 问题是,当我在浏览器上检查这个时,无论是点击还是滚动,它都不起作用,我只能看到第一部分。 这是我的代码
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<link rel="stylesheet" href=" https://cdnjs.cloudflare.com/ajax/libs/fullPage.js/2.8.1/jquery.fullPage.css" />
</head>
<body>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.0.0-rc1/jquery.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/fullPage.js/2.8.1/jquery.fullPage.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jQuery-slimScroll/1.3.7/jquery.slimscroll.js"></script>
<script>
$(function () {
$('#dowebok').fullpage({
<!--loopHorizontal: false,-->
navigation: true,
css3:true,
scrollOverflow: true
})
})
</script>
<div id="dowebok">
<div class="section">section1</div>
<div class="section">section2</div>
<div class="section">section3</div>
<div class="section">
section4
...........
(contents which runs really long, larger than the size of the section)
</div>
</div>
</body>
</html>
答案 0 :(得分:0)
问题似乎与fullpage.js版本2.8.1。
有关我使用v2.7.7 fullpage.js文件尝试了你的代码,它工作正常。我会评论这个,但我没有足够的特权。
编辑:问题似乎与fullpage.js不一样,因为你需要在加载fullpage.js之前加载scrolloverflow.js,如fullpage.js文档中所述。