2013-08-04 2 views
0

부트 스트랩의 회전 목마에 문제가있는 것 같습니다. 마지막으로 구현 한 것은 Bootstrap 2.xx를 사용했을 때입니다. 2.xx 샘플 코드 페이지에서 리핑하면 문제가 없습니다. 그러나 내가 똑같이 할 때, 컨베이어 벨트가 작동하지 않는 것 같습니다. 미끄러지지 않고 아무것도하지 않습니다. 부트 스트랩 3 CDN이 포함되어 있으며 경로가 작동합니다. 또한 Jquery를 페이지 맨 아래에 포함 시켰습니다. Jquery는 코드와 함께 제공되었지만 여전히 라이브 링크입니다. 모든 솔루션/조언을 높이 평가합니다.TwitterBootstrap 3 회전 장치가 작동하지 않습니까?

감사합니다 부트 스트랩의 자바 스크립트 구성 요소, jQuery를에 의존하므로 당신이 구성 요소를로드하기 전에 라이브러리 을로드 할 수

<!DOCTYPE html> 
    <html lang="en"> 
     <head> 
     <meta charset="utf-8"> 
     <title>Veyern Gaming</title> 
     <meta name="viewport" content="width=device-width, initial-scale=1.0">> 
     <link rel="stylesheet" href="css/style.css"/> 
     <!-- Latest compiled and minified CSS --> 
     <link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.0.0-rc1/css/bootstrap.min.css"> 
     <!-- Latest compiled and minified JavaScript --> 
     <script src="http://netdna.bootstrapcdn.com/bootstrap/3.0.0-rc1/js/bootstrap.min.js"></script> 
     </head> 
     <body> 
    <div class="container"> 
    <!--Navbar--> 
     <div class="navbar"> 
      <ul class="nav navbar-nav"> 
       <li class="active"><a href="/index.html>Home</a></li> 
       <li><a href="">Forum</a></li> 
       <li><a href="">Vote</a></li> 
       <li><a href="">Store</a></li> 
       <li><a href="">Stats</a></li> 
      </ul> 
     </div> 
    <!--Image Slider--> 
     <div id="carousel-example-generic" class="carousel slide"> 
      <!-- Indicators --> 
      <ol class="carousel-indicators"> 
       <li data-target="#carousel-example-generic" data-slide-to="0" class="active"></li> 
       <li data-target="#carousel-example-generic" data-slide-to="1"></li> 
       <li data-target="#carousel-example-generic" data-slide-to="2"></li> 
      </ol> 

      <!-- Wrapper for slides --> 
      <div class="carousel-inner"> 
       <div class="item active"> 
        <img src="http://placehold.it/300x100" alt=""> 
       </div> 
       <div class="item"> 
        <img src="http://placehold.it/300x100" alt=""> 
       </div> 
       <div class="item"> 
        <img src="http://placehold.it/300x100" alt=""> 
       </div> 
      </div> 

      <!-- Controls --> 
      <a class="left carousel-control" href="#carousel-example-generic" data-slide="prev"> 
       <span class="icon-prev"></span> 
      </a> 
      <a class="right carousel-control" href="#carousel-example-generic" data-slide="next"> 
       <span class="icon-next"></span> 
      </a> 
     </div> 
    </div> 
    <!-- Scripts--> 
     <script src="http://code.jquery.com/jquery.js"></script> 
     </body> 
    <html> 

답변

5

. 부트 스트랩 워드 프로세서

:

플러그인 종속성

일부 플러그인과 CSS 구성 요소는 다른 플러그인에 따라 달라집니다. 에 플러그인을 개별적으로 포함하는 경우 문서에 이러한 종속성이 있는지 확인하십시오. 또한 모든 플러그인은 jQuery 에 의존합니다 (이는 jQuery가 플러그인 파일보다 먼저 포함되어야 함을 의미합니다).

</div> 
</div> 
<!-- Scripts--> 
    <script src="http://code.jquery.com/jquery.js"></script> 
    <script src="http://netdna.bootstrapcdn.com/bootstrap/3.0.0-rc1/js/bootstrap.min.js"></script> 
    </body> 
<html> 
:

은 닫는 부분이 어떻게 할 수없는 이유가 없습니다

관련 문제