Bootstrap 轮播不工作并干扰其他 jquery。这是为什么?
Bootstrap Carousel Not working and interfering with other jquery. Why is that?
我已经尝试了很长一段时间来弄清楚如何插入 bootstrap 轮播,但没有成功。我不知道这是否与我插入脚本的方式有关。我下载了 bootstrap 并将其放入我的文件夹中。我正在观看一个又一个的视频和在线教程,但没有成功。有了我现在所拥有的,我发现脚本以某种方式干扰了我的导航,当您将鼠标悬停在单词上时出现的下拉信息现在被分开了,而它们曾经直接位于单词下方,之间没有填充或边距.我只是希望在我的导航正下方有一个旋转木马,同时仍然允许导航在使用我已经放置的 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 文件夹。
感谢您提供的任何帮助!
您是否尝试过向最后加载的 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。
你悬停的菜单链接和出现的悬停框之间的分离的原因是来自 bootstrap.min.css
的样式规则
ol, ul {
margin-bottom: 10px;
margin-top: 0px;
}
要使您的标签 ul 底部边距为 0px,请将此添加到您的 style.css:
ul#tabs {
margin-bottom: 0px;
}
我不确定为什么轮播不适合您。这个对我有用。也许它正在工作,但因为所有图像都相同,所以看起来不像?
这是一个 plunker,额外的 space 问题已修复。
编辑(添加轮播问题的解决方案):
改变
<div id="myCarousel" class="carousel">
至
<div id="myCarousel" class="carousel slide">
如果你想让轮播自动循环你需要添加
$(function() {
$('.carousel').carousel();
});
给你的 javascript.
我已经尝试了很长一段时间来弄清楚如何插入 bootstrap 轮播,但没有成功。我不知道这是否与我插入脚本的方式有关。我下载了 bootstrap 并将其放入我的文件夹中。我正在观看一个又一个的视频和在线教程,但没有成功。有了我现在所拥有的,我发现脚本以某种方式干扰了我的导航,当您将鼠标悬停在单词上时出现的下拉信息现在被分开了,而它们曾经直接位于单词下方,之间没有填充或边距.我只是希望在我的导航正下方有一个旋转木马,同时仍然允许导航在使用我已经放置的 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 文件夹。
感谢您提供的任何帮助!
您是否尝试过向最后加载的 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。
你悬停的菜单链接和出现的悬停框之间的分离的原因是来自 bootstrap.min.css
的样式规则ol, ul {
margin-bottom: 10px;
margin-top: 0px;
}
要使您的标签 ul 底部边距为 0px,请将此添加到您的 style.css:
ul#tabs {
margin-bottom: 0px;
}
我不确定为什么轮播不适合您。这个对我有用。也许它正在工作,但因为所有图像都相同,所以看起来不像?
这是一个 plunker,额外的 space 问题已修复。
编辑(添加轮播问题的解决方案):
改变
<div id="myCarousel" class="carousel">
至
<div id="myCarousel" class="carousel slide">
如果你想让轮播自动循环你需要添加
$(function() {
$('.carousel').carousel();
});
给你的 javascript.