javascript - Bootstrap 3 的轮播不起作用

标签 javascript jquery twitter-bootstrap carousel

好吧,我似乎遇到了问题。我无法让我的旋转木马工作。我已经确保加载了所有 javascript 文件,甚至还添加了 Google 的 cdn 链接以确保这一点。我也相信我的称呼是正确的。一些帮助将不胜感激。提前致谢!

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta name="description" content="">
    <meta name="author" content="">

    <title>Church of the Hills | Nashville TN</title>

    <!-- Bootstrap core CSS -->
    <link href="css/bootstrap.css" rel="stylesheet">

    <!-- Custom Google Web Font -->
    <link href="font-awesome/css/font-awesome.min.css" rel="stylesheet">
    <link href='http://fonts.googleapis.com/css?family=Lato:100,300,400,700,900,100italic,300italic,400italic,700italic,900italic' rel='stylesheet' type='text/css'>

    <!-- Add custom CSS here -->
    <link href="css/landing-page.css" type="text/css" rel="stylesheet">


</head>

<body>

    <div class="dark-content-section">
        <!-- /.container -->
        <div id="carousel-example-generic" class="carousel slide" data-ride="carousel">
          <!-- 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="img/girls-slide.jpg" alt="">
              <div class="carousel-caption">
                ...
              </div>
              <img src="img/girls-slide.jpg" alt="">
              <div class="carousel-caption">
                ...
              </div>
            </div>

          </div>

          <!-- Controls -->
          <a class="left carousel-control" href="#carousel-example-generic" data-slide="prev">
            <span class="glyphicon glyphicon-chevron-left"></span>
          </a>
          <a class="right carousel-control" href="#carousel-example-generic" data-slide="next">
            <span class="glyphicon glyphicon-chevron-right"></span>
          </a>
        </div>

    </div>
    <!-- /.dark-content-section -->

    <!-- JavaScript -->
    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
    <script src="js/jquery-1.10.2.js"></script>
    <script src="js/bootstrap.js"></script>

    <script>
        $(function(){
          $('#carousel-example-generic').carousel();
        });
    </script>

</body>

</html>

最佳答案

我相信你需要一个

   <div class="item"> ... </div>

每个图像和您的代码中只有一个,但您有 3 个 li 作为指示器。

关于javascript - Bootstrap 3 的轮播不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23761136/

相关文章:

javascript - 执行上下文和返回语句

javascript - 使用 fabricjs 从 json 到图像

javascript - 如何在表格行上启用 anchor 标记?

c# - 如何在 C# 中的代码后面获取 javascript 值

javascript - jquery 数据表页面上未显示列选择器

html - Bootstrap 4 将菜单项转换为多选

twitter-bootstrap - 在悬停时更改图标栏 Bootstrap 切换菜单

javascript - 网站根本没有缩放

javascript - 如何提供 Google map 实例的屏幕截图?

javascript - P5.js 椭圆不跟随 mouseX 和 Y