简体   繁体   中英

My bootstrap carousel slider is not working

I used the bootstrap carousel slider plugin, but it does not seem to be working. I did modify the bootstrap code a bit using this example: file:///C:/Users/wangsi/Desktop/corlate-free-responsive-business-html-template/index.html

See my example on fiddle: JsFiddle

<section id="main-slider" class="no-margin wow fadeInDown">
        <a class="prev hidden-xs" href="#main-slider" data-slide="prev">
          <i class="fa fa-chevron-left"></i>
        </a>
        <a class="next hidden-xs" href="#main-slider" data-slide="next">
          <i class="fa fa-chevron-right"></i>
        </a>
        <div class="carousel slide" data-ride="carousel">

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

          <div class="engineering-section">
            <div class="engineering-section-title title-text text-center">Engineering</div>
              <div class="down-button bounceInDown animated">
                  <a class="next-down-chevron" href="#"><i class="fa fa-chevron-down"></i></a>
              </div>

        <div class="carousel-inner">

            <div class="item active">
              <div class="card-container">
                <div class="col-md-4">
                  <div class="card-section">
                    <div class="mdl-card__media">
                      <img src="img/engineer-1.jpg">
                    </div>
                    <div class="mdl-card__supporting-text">
                      <span class="mdl-typography--font-light mdl-typography--subhead">V8.8 aspenONE Enginnering Suite (May 2015)</span>
                      <div class="checksum">
                        <a class="info_checksum" href="#">Checksum</a>
                      </div>
                    </div><!--end supporting text-->
                    <div class="card_actions">
                       <a class="card-links" href="#">
                         Download Now
                         <i class="fa fa-chevron-right"></i>
                       </a>
                    </div><!--end card_actions-->
                  </div><!--end card-section-->
                </div>

              <div class="col-md-4">
                 <div class="card-section">
                  <div class="mdl-card__media">
                    <img src="img/engineer-2.jpg">
                  </div>
                  <div class="mdl-card__supporting-text">
                    <span class="mdl-typography--font-light mdl-typography--subhead">V8.8 aspenONE Process Manuals and Process Tools</span>
                    <div class="checksum">
                    <a class="info_checksum" href="#">Checksum</a>
                    </div>
                  </div>
                  <div class="card_actions">
                     <a class="card-links" href="#">
                       Download Now
                       <i class="fa fa-chevron-right"></i>
                     </a>
                  </div><!--end card_actions-->
                </div><!--end card-section-->
              </div>

              <div class="col-md-4">
                <div class="card-section"> 
                <div class="mdl-card__media">
                  <img src="img/engineer-3.jpg">
                </div>
                <div class="mdl-card__supporting-text">
                  <span class="mdl-typography--font-light mdl-typography--subhead">Aspen License Deployment Assistant</span>
                  <div class="checksum">
                    <a class="info_checksum" href="#">Checksum</a>
                  </div>
                </div>
                <div class="card_actions">
                   <a class="card-links" href="#">
                     Download Now
                     <i class="fa fa-chevron-right"></i>
                   </a>
                </div><!--end card_actions-->
              </div><!--end card-section-->
           </div><!--end col-md-4-->  
        </div><!--end card-container-->
      </div>
      <div class="item">
        <div class="card-container content-one">
                <div class="col-md-4">
                  <div class="card-section">
                    <div class="mdl-card__media">
                      <img src="img/1.jpg">
                    </div>
                    <div class="mdl-card__supporting-text">
                      <span class="mdl-typography--font-light mdl-typography--subhead">V8.8 aspenONE Enginnering Suite (May 2015)</span>
                      <div class="checksum">
                        <a class="info_checksum" href="#">Checksum</a>
                      </div>
                    </div><!--end supporting text-->
                    <div class="card_actions">
                       <a class="card-links" href="#">
                         Download Now
                         <i class="fa fa-chevron-right"></i>
                       </a>
                    </div><!--end card_actions-->
                  </div><!--end card-section-->
                </div>

              <div class="col-md-4">
                 <div class="card-section">
                  <div class="mdl-card__media">
                    <img src="img/2.jpg">
                  </div>
                  <div class="mdl-card__supporting-text">
                    <span class="mdl-typography--font-light mdl-typography--subhead">V8.8 aspenONE Process Manuals and Process Tools</span>
                    <div class="checksum">
                    <a class="info_checksum" href="#">Checksum</a>
                    </div>
                  </div>
                  <div class="card_actions">
                     <a class="card-links" href="#">
                       Download Now
                       <i class="fa fa-chevron-right"></i>
                     </a>
                  </div><!--end card_actions-->
                </div><!--end card-section-->
              </div>

              <div class="col-md-4">
                <div class="card-section"> 
                <div class="mdl-card__media">
                  <img src="img/3.jpg">
                </div>
                <div class="mdl-card__supporting-text">
                  <span class="mdl-typography--font-light mdl-typography--subhead">Aspen License Deployment Assistant</span>
                  <div class="checksum">
                    <a class="info_checksum" href="#">Checksum</a>
                  </div>
                </div>
                <div class="card_actions">
                   <a class="card-links" href="#">
                     Download Now
                     <i class="fa fa-chevron-right"></i>
                   </a>
                </div><!--end card_actions-->
              </div><!--end card-section-->
           </div><!--end col-md-4-->  
        </div><!--end card-container-->
      </div>
    </div><!--end engineering-->
  </div>
 </div>

</section>

JsFiddle

I took a look at your fiddle, it seems everything is fine from my perspective. So I looked into the console and I realised you aren't loading JQuery. You might want to start somewhere there first. Bootstrap Js requires Jquery .

<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.6/jquery.min.js"></script>

Edit: a look at the file you are loading, there is nothing in there that screams JQuery. So I suggest you load JQuery file before you load BootstrapJs.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM