2016-05-09 13 views
2

問題は、コンテンツがカルーセルに表示されないことです。私はスライダーに背景を置き、コンテンツにZインデックスを追加しましたが、スライドのコンテンツは表示されません。仲間を助けてください!カルーセルのカスタマイズ|ブートストラップ

<!DOCTYPE html> 
<html lang="en"> 
<head> 
<meta charset="utf-8"> 
<meta http-equiv="X-UA-Compatible" content="IE=edge"> 
<meta name="viewport" content="width=device-width, initial-scale=1"> 
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags --> 



<title>Carousel Template for Bootstrap</title> 

<!-- Bootstrap core CSS --> 
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous"> 

<!-- Custom styles for this template --> 
<link href="carousel.css" rel="stylesheet"> 
</head> 

<body> 


<!-- Carousel 
================================================== --> 
<div id="myCarousel" class="carousel slide" data-ride="carousel"> 
    <!-- Indicators --> 
    <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" role="listbox"> 
    <div class="item active"> 
     <img src="img/1-3-slide.png" alt="First slide"> 
     <div class="container"> 
      <div class="row"> 
      <div class="col-md-6"> 
       <div class='slide-image-left'> 
        <img src='img/Design.png'> 
       </div> 
      </div> 
       <div class="col-md-6"> 
       <div class="carousel-caption"> 
        <h1>Design</h1> 
        <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s</p> 
        </div> 
       </div> 
      </div> 
     </div> 
    </div> 

    <div class="item"> 
     <img src="img/2-slide.png" alt="Second slide"> 
     <div class="container"> 
      <div class="row"> 
      <div class="col-lg-6"> 
       <div class="carousel-caption"> 
        <h1>Communication</h1> 
        <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s</p> 
       </div> 
      </div> 
      <div class="col-lg-6">      
       <div class='slide-image-right'> 
        <img src='img/Communication.png'> 
       </div> 
      </div> 
      </div> 
     </div> 
    </div> 

    <div class="item"> 
     <img src="img/1-3-slide.png" alt="Third slide"> 
     <div class="container"> 
      <div class="row"> 
      <div class="col-lg-6"> 
       <div class='slide-image-left'> 
        <img src='img/Consulting.png'> 
       </div> 
      </div> 
      <div class="col-lg-6">      
       <div class="carousel-caption"> 
        <h1>Consulting</h1> 
        <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s</p> 
       </div> 
      </div> 
      </div> 
     </div> 
    </div> 


</div><!-- /.carousel --> 





    <!-- FOOTER --> 
    <footer> 
    <p class="pull-right"><a href="#">Back to top</a></p> 
    <p>&copy; 2015 Company, Inc. &middot; <a href="#">Privacy</a> &middot; <a href="#">Terms</a></p> 
    </footer> 

</div><!-- /.container --> 


<!-- Bootstrap core JavaScript 
================================================== --> 
<!-- Placed at the end of the document so the pages load faster --> 
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script> 
<!-- Latest compiled and minified JavaScript --> 
    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script> 

     </body> 
    </html> 

CSSコード

/* GLOBAL STYLES 
-------------------------------------------------- */ 
/* Padding below the footer and lighter body text */ 

body { 
    padding-bottom: 40px; 
    color: #5a5a5a; 
} 


/* CUSTOMIZE THE CAROUSEL 
-------------------------------------------------- */ 

/* Carousel base class */ 
.carousel { 
    height: 500px; 

} 
/* Since positioning the image, we need to help out the caption */ 


/* Declare heights because of positioning of img element */ 
.carousel .item { 
    height: 500px; 

} 
.carousel-inner > .item > img { 
    position: absolute; 
    top: 0; 
    left: 0; 
    min-width: 100%; 
    height: 500px; 
} 

.carousel-inner .item .carousel-caption h1{ 
    z-index: 10; 
} 

.slide-image-left img{ 
    margin-top: 80px; 
} 
/* RESPONSIVE CSS 
-------------------------------------------------- */ 

@media (min-width: 768px) { 


    /* Bump up size of carousel content */ 
    .carousel-caption p { 
    margin-bottom: 20px; 
    font-size: 21px; 
    line-height: 1.4; 
    } 

    .featurette-heading { 
    font-size: 50px; 
    } 
} 

@media (min-width: 992px) { 
    .featurette-heading { 
    margin-top: 120px; 
    } 
} 

また、私は黄色の領域にコンテンツを配置しようとしている画像を、添付しました。助けてください:) enter image description here

答えて

0

あなたのCSSスタイルシートにこのスタイルを追加してください、あなたのコンテンツは黄色い背景で表示されます。

.carousel-caption { 
    background-color: yellow; 
    float: left; 
    position: relative; 
} 

そして、あなたはJS私は

は、含まれていない

<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" ></script> 
+0

こんにちはBilwalでbootstrap.js場合は、これを追加するHTMLコード内のスクリプトタグを参照してくださいdin't原因を含めていることを確認してくださいあなたの入力は実際に働いています! – Gaurav

+0

本当にありがとうございました。 – Gaurav