无法将引导程序加载到全页js [英] Unable to load bootstrap to fullpage js

查看:45
本文介绍了无法将引导程序加载到全页js的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在此解决方案之后,我尝试添加使用引导程序创建一个简单的整页.

Following this solution I have tried to add create a simple full-page with bootstrap.

我希望前端像整页滚动一样,以便响应.

I want my front end to be like fullpage scrolling so it will be responsive.

设置文件夹

代码

<!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来设计前端.我一定会丢失一些东西,并且坚持下去.

I am using Sublime Text Editor 3 for designing the front end. I must be missing something and I am stuck to it.

任何帮助将不胜感激.

Any help would be highly appreciated.

推荐答案

正确使用所有外部链接,您可能会错过一些链接,请检查一下

Use all the external links proper, you may be missed some links, check it

 $(document).ready(function() {
      $('#fullpage').fullpage({
          sectionsColor: ['#f2f2f2','#4BBFC3','#7BAABE','whitesmoke'],
          css3: true
      });
  });

  .section {
font-size: 6em;
text-align: center;
}

<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" rel="stylesheet"/>
<link href="https://cdnjs.cloudflare.com/ajax/libs/fullPage.js/3.0.5/fullpage.css" rel="stylesheet"/>


<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/fullPage.js/3.0.5/fullpage.js"></script>


<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>
</body>

在此处检查jsfiddle

这篇关于无法将引导程序加载到全页js的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆