0

我已经尝试了很长一段时间来弄清楚如何在没有运气的情况下插入引导轮播。我不知道这是否与我插入脚本的方式有关。我下载了引导程序并将其放入我的文件夹中。我一个接一个地关注视频和在线教程,但没有运气。就我现在所拥有的,我看到不知何故,脚本干扰了我的导航,当您将鼠标悬停在单词上时出现的下拉信息现在是分开的,当它们过去直接位于单词下方时,之间没有填充或边距. 我只是希望在我的导航正下方有一个轮播,同时仍然允许导航在使用我已经放置的 js 悬停时下拉信息。

这是我的代码。有人可以帮我了解出了什么问题以及如何解决吗?

我的html是:

<!DOCTYPE html>
<html >
<head>
  <meta charset="UTF-8">
  <title>Gender Identity 2</title>



      <link rel="stylesheet" href="bootstrap/css/bootstrap.min.css">
      <link rel="stylesheet" href="css/style.css">

</head>
<div class="container">
<header> 
  <img class="banner" src="images/banner.png"> 
  <div class="gender">
    <h3> Gender Identity </h3>
  </div>
</header>

<div id="wrap"> 

 <div id="tabwrap"> 
  <ul id="tabs">
   <li >
     <a href="#bacon" class="cyan">Terms</a>
   </li>

    <li>
     <a href="#batfish" class="green">Resources</a>
    </li> 

   <li>
     <a href="#tuna" class="lav">Culture</a>
    </li> 

    <li>
      <a href="#sausage" class="teal">Share</a>
    </li>

  </ul> 

  <div id="content"> 
    <div id="bacon" class="animated"> <p>Bacon ipsum dolor amet ribeye short loin leberkas andouille jerky meatloaf pork spare ribs corned beef. Andouille ham hock ground round, shankle pastrami rump hamburger filet mignon. </p></div>
    <div id="batfish" class="animated"><p>Batfish warmouth orbicular combtooth blenny; madtom, knifefish handfish rock beauty armorhead frogfish. Cownose ray pupfish pencilfish char fangtooth marblefish longfin dragonfish armored searobin hamlet.</p></div>
    <div id="tuna" class="animated"><p>Tuna, sculpin squeaker rice eel, lamprey triggerfish mooneye African glass catfish, loach wolf-eel yellowhead jawfish grass carp sea dragon neon tetra. Fingerfish forehead brooder sarcastic fringehead sixgill ray, scaly dragonfish bluntnose minnow.</p></div>
    <div id="sausage" class="animated"> <p>Sausage ground round sirloin ham hock t-bone tongue strip steak meatloaf landjaeger shankle andouille. Turducken doner brisket, shank salami shoulder kevin filet mignon ball tip chicken.</p> 
    </div> <!-- End of Div-->
   </div> <!-- End of Div-->
  </div><!-- End of Div-->

<!-- Carousel Code Start -->

<div id = "myCarousel" class = "carousel">

<ol class = "carousel-indicators">
<li data-target = "#myCarousel" data-slide-to = "0" class = "active"></li>
<li data-target = "#myCarousel" data-slide-to = "1"></li>
<li data-target = "#myCarousel" data-slide-to = "2"></li>
</ol>

<div class = "carousel-inner">

<div class = "item active">
<img src="http://placehold.it/1250x660" alt = "pic1" class = "img-responsive">
</div>


<div class = "item">
<img src="http://placehold.it/1250x660" alt = "pic1" class = "img-responsive">
</div>


<div class = "item">
<img src="http://placehold.it/1250x660" alt = "pic1" class = "img-responsive">
</div>

</div>

</div>

 <!-- <div class="main-caro">
    <img src="http://placehold.it/1250x660">

  </div> <!-- End of Div--> -->

<!-- Carousel Code End -->

</div> <!-- End of last Div-->

  <script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.0/jquery.min.js'></script>
    <script src="js/index.js"></script>

<!--  Bootstrap -->
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
    <script src="bootstrap/js/bootstrap.min.js"></script>


</body>
</html>

我的CSS是:

@font-face { font-family: "aqua"; 
  src: url('aqua.ttf'); } 
@font-face { font-family: "axis"; 
  src: url('Axis Extrabold.otf'); } 
@font-face { font-family: "atami"; 
  src: url('Atami-Regular.otf'); } 



.container {
  width: 100%;
  margin: 0 auto;
}

.banner{
  display: block;
margin: 0 auto;
  width: 100%;
  min-width: 400px;
}

.gender {
  padding-top: 20px;
  padding-bottom: 20px;
 /* background-color: black; */
  margin-bottom: 20px;
}
.gender h3{
text-align: center;
 color: rgb(0,0,0); /* white*/
  animation: rgb infinite alternate;
  animation-duration: 15s;
  font-size: 2em;
}

@keyframes rgb {
  /* 0% will fallback to the default background-color of #rgb*/
 50% {color: rgb(29,185,226); /*blue*/ }
  75% {color: rgb(105,45,138); /*purple*/ }
  100% {color: rgb(237,49,147); /*pink*/}
}

h3{
font-family: "axis", sans-serif;
}

* { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;  margin: 0; padding: 0; }

#wrap { width: 75%; margin: 0 auto; min-width: 300px; max-width: 1400px; }

#tabwrap {
    background: #fff;
    overflow: hidden;
    width: 100%;
    min-height: 300px;
    margin: 0 auto;
    /*box-shadow: 0 0 20px #ddd;*/
    /*border: 1px solid #ddd;*/
}
#tabs { overflow: hidden;  }
#tabs li { list-style: none;
           font-family: "axis", sans-serif; }

#tabs li a {
    float: left;
    display: block;
    padding: 10px;
    color: black;
    width: 25%;
    text-decoration: none;
    text-align: center;
    /*border-right: 1px solid #555;
    border-left: 1px solid #888;*/
    font-size: 15px;

}

#tabs li a:hover { background: #666; }
#tabs li:first-child a { border-left: 0; }
#tabs li:last-child a { border-right: 0; }

#tabs li.current a {
    background: #fff;
    color: #666;

}

#tabs li.current a.cyan{
    background: rgb(245,166,200); /*pink*/
    color: white;
}

#tabs li.current a.green{
background-color: rgb(164,206,249); /*blue*/
    color: white;
}

#tabs li.current a.lav{
 background-color: rgb(200,200,255);
    color: white;
}


#tabs li.current a.teal{
 background-color: rgb(163,109,174);
    color: white;
}



#content > div {
    clear: both;
    padding: 20px;
    line-height: 19px;
    color: white;
    display: none;
font-family: "axis", sans-serif;

}
.animated {
    -webkit-animation-duration: 1s;
       -moz-animation-duration: 1s;
         -o-animation-duration: 1s;
            animation-duration: 2s;
}

#content .current { display: block }
#content p { margin: 0 0 20px 0;}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

#bacon {
  background-color: rgb(245,166,200); /*pink*/
}

#batfish {
  background-color: rgb(164,206,249); /*blue*/
}

#tuna {
    background-color: rgb(200,200,255);
}

#sausage {
    background-color: rgb(163,109,174);
  z-index: 1;
}

.main-caro img{
  display:block;
  width: 100%;
  margin: 0 auto;
  margin-top: -215px;
padding-top: 20px;
  padding-bottom: 20px;
  z-index:-1;
}

我的js是:

$('#tabs li a').hover(function(e) {
    $('#tabs li, #content .current').removeClass('current').removeClass('fadeInLeft'); 
    $(this).parent().addClass('current');
    var currentTab = $(this).attr('href');
    $(currentTab).addClass('current fadeInLeft');
    e.preventDefault();

}, function(){
   $('#tabs li, #content .current').removeClass('current').removeClass('fadeInLeft');
});

同样,我已经下载了 bootstrap 并将其插入到我的主文件夹中,因为它是名为 bootstrap 的自己的文件夹,然后可以在其中找到 css 文件夹和 js 文件夹。

感谢您提供的任何帮助!

4

2 回答 2

2

您是否尝试向最后加载的 jQuery 库添加 noConflict?我有一个类似的问题,我的轮播单独工作,但是一旦我将它添加到已经使用 jQuery 库的页面中,结果发现这些库并没有很好地融合。

您的代码正在加载两个 jQuery 库。

    <script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.0/jquery.min.js'></script>

然后

   <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>

我打赌它需要添加一个 noConflict 。

jQuery.noConflict()

于 2016-12-03T04:36:02.247 回答
1

您悬停的菜单链接和出现的悬停框之间分离的原因是来自 bootstrap.min.css 的样式规则

ol, ul {
    margin-bottom: 10px;
    margin-top: 0px;
}

要使您的标签页底部有 0px 边距,请将其添加到您的 style.css:

ul#tabs {
    margin-bottom: 0px;
}

我不确定为什么轮播不适合你。这个对我有用。也许它正在工作,但因为所有图像都相同,它看起来不像?

这是一个修复了额外空间问题的plunker 。

编辑(为轮播问题添加解决方案):

改变

<div id="myCarousel" class="carousel">

<div id="myCarousel" class="carousel slide">

如果您希望轮播自动循环,则需要添加

$(function() {
    $('.carousel').carousel();
});

到你的 javascript。

于 2016-12-03T04:42:25.443 回答