【发布时间】:2019-10-01 02:09:07
【问题描述】:
在solution 之后,我尝试添加使用引导程序创建一个简单的整页。
我希望我的前端像整页滚动一样,以便响应。
设置文件夹
代码
<!DOCTYPE html>
<html>
<head>
<link href="css/bootstrap.css" rel="stylesheet"/>
<link rel="stylesheet" type="text/css" href="src/jquery.fullPage.css" />
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1 /jquery.min.js"></script>
<!-- This following line is optional. Only necessary if you use the option css3:false and you want to use other easing effects rather than "linear", "swing" or "easeInOutCubic". -->
<script src="vendors/jquery.easings.min.js"></script>
<!-- This following line is only necessary in the case of using the plugin option `scrollOverflow:true` -->
<script type="text/javascript" src="vendors/jquery.slimscroll.min.js"></script>
<script type="text/javascript" src="src/jquery.fullPage.js"></script>
<title>Test</title>
<script type="text/javascript">
$(document).ready(function() {
$('#fullpage').fullpage({
sectionsColor: ['#f2f2f2','#4BBFC3','#7BAABE','whitesmoke'],
css3: true
});
});
</script>
<style type="text/css">
.section {
font-size: 6em;
text-align: center;
}
</style>
</head>
<body>
<div id="fullpage">
<div class="section">Section 1</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">Section 2</div>
<div class="section">Section 3</div>
</div>
<script src="js/bootstrap.min.js"></script>
</body>
</html>
输出
我使用Sublime Text Editor 3 来设计前端。我一定是错过了什么,而且我坚持下去。
任何帮助将不胜感激。
【问题讨论】:
-
您的问题是什么或您的预期输出是什么?你能解释一下吗
-
@UdhayTitusP 我想将 bootstrap 添加到 fullpage.js,例如 this
-
您使用的是 bootstrap 4 或更早版本
-
@UdhayTitusP 是引导程序 4.3
标签: jquery css twitter-bootstrap responsive-design fullpage.js