gpt4 book ai didi

javascript - Bootstrap Carousel 在 Chrome 中不工作

转载 作者:太空宇宙 更新时间:2023-11-04 08:56:32 25 4
gpt4 key购买 nike

我在我的网页中将轮播实现为 slider 。它在 firefox 和移动浏览器(甚至 chrome)中完美运行。但它没有出现在 chrome 中。我不知道出了什么问题。我的语法是:

HTML:

<div class="carousel fade-carousel slide" data-ride="carousel" data-interval="4000" id="bs-carousel">
<!-- Overlay -->
<div class="overlay"></div>

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

<!-- Wrapper for slides -->
<div class="carousel-inner">
<div class="item slides active">
<div class="slide-1"></div>
<div class="hero">
<hgroup>
<h1>Nepal&apos;s First</h1>
<h3>Nepal&apos;s first portal to buy authentic and verified refurbished Auto-mobiles.</h3>
</hgroup>

</div>
</div>
<div class="item slides">
<div class="slide-2"></div>
<div class="hero">
<hgroup>
<h1>Trusted Sellers</h1>
<h3>Buy from our authentic and verified recondition houses across the nation.</h3>
</hgroup>

</div>
</div>
<div class="item slides">
<div class="slide-3"></div>
<div class="hero">
<hgroup>
<h1>Tested</h1>
<h3>All listed vehicles tested and in well condition.</h3>
</hgroup>

</div>
</div>
</div>
</div>

CSS

/*
Fade content bs-carousel with hero headers
Code snippet by maridlcrmn (Follow me on Twitter @maridlcrmn) for Bootsnipp.com
Image credits: unsplash.com
*/

/********************************/
/* Fade Bs-carousel */
/********************************/
.fade-carousel {
position: relative;
height: 55vh;
}
.fade-carousel .carousel-inner .item {
height: 55vh;
}
.fade-carousel .carousel-indicators > li {
margin: 0 2px;
background-color: #f39c12;
border-color: #f39c12;
opacity: .7;
}
.fade-carousel .carousel-indicators > li.active {
width: 10px;
height: 10px;
opacity: 1;
}

/********************************/
/* Hero Headers */
/********************************/
.hero {
position: absolute;
top: 50%;
left: 50%;
z-index: 3;
color: #fff;
text-align: center;
text-transform: uppercase;
text-shadow: 1px 1px 0 rgba(0,0,0,.75);
-webkit-transform: translate3d(-50%,-50%,0);
-moz-transform: translate3d(-50%,-50%,0);
-ms-transform: translate3d(-50%,-50%,0);
-o-transform: translate3d(-50%,-50%,0);
transform: translate3d(-50%,-50%,0);
}
.hero h1 {
font-size: 6em;
font-weight: bold;
color: #d3d3d3d3;
margin: 0;
padding: 0;
}
.hero h3{
color:#cccccccc;
}

.fade-carousel .carousel-inner .item .hero {
opacity: 0;
-webkit-transition: 2s all ease-in-out .1s;
-moz-transition: 2s all ease-in-out .1s;
-ms-transition: 2s all ease-in-out .1s;
-o-transition: 2s all ease-in-out .1s;
transition: 2s all ease-in-out .1s;
}
.fade-carousel .carousel-inner .item.active .hero {
opacity: 1;
-webkit-transition: 2s all ease-in-out .1s;
-moz-transition: 2s all ease-in-out .1s;
-ms-transition: 2s all ease-in-out .1s;
-o-transition: 2s all ease-in-out .1s;
transition: 2s all ease-in-out .1s;
}

/********************************/
/* Overlay */
/********************************/
.overlay {
position: absolute;
width: 100%;
height: 100%;
z-index: 2;
background-color: #080d15;
opacity: .2;
}

/********************************/
/* Custom Buttons */
/********************************/
.btn.btn-lg {padding: 10px 40px;}
.btn.btn-hero,
.btn.btn-hero:hover,
.btn.btn-hero:focus {
color: #f5f5f5;
background-color: #1abc9c;
border-color: #1abc9c;
outline: none;
margin: 20px auto;
}

/********************************/
/* Slides backgrounds */
/********************************/
.fade-carousel .slides .slide-1,
.fade-carousel .slides .slide-2,
.fade-carousel .slides .slide-3 {
height: 55vh;
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
}
.fade-carousel .slides .slide-1 {
background-image: url(../img/homepage-slider/nepalride-banner-1.jpg);;
}
.fade-carousel .slides .slide-2 {
background-image: url(../img/homepage-slider/nepalride-banner-2.jpg);;
}
.fade-carousel .slides .slide-3 {
background-image: url(../img/homepage-slider/nepalride-banner-3.jpg);;
}

/********************************/
/* Media Queries */
/********************************/
@media screen and (min-width: 980px){
.hero { width: 980px; }
}
@media screen and (max-width: 640px){
.hero h1 { font-size: 4em; }
}

谁能告诉我该怎么做?我在控制台中出现以下错误:

Uncaught TypeError: Cannot read property 'getContext' of null
at frontend.js:30

你可以在nepalride.com上看到详细信息

最佳答案

在dom中没有id为cline的元素。您可以使用此 if 语句避免错误

if ($('#cline').length > 0) {
var cline = document.getElementById("cline").getContext("2d");
new Chart(cline).Line(lineChartData, {
responsive: true
});
}

祝你好运。C

关于javascript - Bootstrap Carousel 在 Chrome 中不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43087312/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com