Javascript无法与Owl-Carousel配合使用

时间:2019-05-22 18:03:54

标签: javascript html bootstrap-4 owl-carousel

5个小时以来,我一直在为我的网站实施轮播。我想显示多个图像,但每次将轮播增加1个图像。我尝试在YouTube https://www.youtube.com/watch?v=nVNv1jUitCk上按照本教程进行操作,直到4:45。除上一个和下一个按钮不显示外,其他所有内容均显示正常。我确信Javascript无法在我的系统上运行,但这可能是另一个问题。这是我的第五教程。另外,由于猫头鹰图书馆已下载到本地计算机,因此我不知道如何在此处链接。

观看了多个教程并通过堆栈溢出进行搜索

<!doctype html>
<html lang="en">
  <head>
    <!-- Required meta tags -->
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">

    <!-- Bootstrap CSS -->
    <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
    <!-- <link rel="stylesheet" type="text/css" href="../static/css/base.css"> -->

    <!-- linking the owl carousel files -->
    <link rel="stylesheet" href="../static/css/owl.carousel.css">
    <link rel="stylesheet" href="../static/css/owl.theme.default.css">

    <title>Carousel Demo</title>
  </head>
  <body>




    <!-- carousel -->
    <div class="container mt-5">
      <div class="row">
          <div class="owl-carousel owl-theme">
              <div class="item"><h4>1</h4></div>
              <div class="item"><h4>2</h4></div>
              <div class="item"><h4>3</h4></div>
              <div class="item"><h4>4</h4></div>
              <div class="item"><h4>5</h4></div>
              <div class="item"><h4>6</h4></div>
              <div class="item"><h4>7</h4></div>
              <div class="item"><h4>8</h4></div>
              <div class="item"><h4>9</h4></div>
              <div class="item"><h4>10</h4></div>
              <div class="item"><h4>11</h4></div>
              <div class="item"><h4>12</h4></div>
          </div>
      </div>
    </div>



    <!-- Optional JavaScript -->
    <!-- jQuery first, then Popper.js, then Bootstrap JS -->
    <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
    <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>


    <!-- linking owl js here -->
    <script src="../static/js/owl.carousel.js"></script>

    <!-- owl setup script -->
    <script>
      $('.owl-carousel').owlCarousel({
          loop:true,
          margin:10,
          nav:true,
          responsive:{
              0:{
                  items:1
              },
              600:{
                  items:3
              },
              1000:{
                  items:5
              }
          }
      })
    </script>


  </body>
</html>

预期结果应该是带有两个按钮的轮播,分别是下一个和上一个,它实际上是有效的。

1 个答案:

答案 0 :(得分:0)

我只是尝试用您提供的HTML代码加载Owl-Carousel,并且它可以工作(我调整了文件路径以匹配我自己的文件路径)。但是,如果您未正确链接文件,则可能某些组件将无法正确加载(如您所用的箭头)。

如果打开开发工具并转到“控制台”,您是否在其中看到任何错误消息?这样可以为您提供线索,以提示可能未正确加载的内容。