Owl Carousel显示问题

huangapple go评论53阅读模式
英文:

Owl Carousel display issue

问题

我尝试将图片放在一个水平轮播中,但每当我尝试时,它显示得很奇怪,就像是垂直的。以下是我的代码片段:

<div class="owl-carousel owl-theme">
  <div class="item">
    <a href="link">
      <img class="gameimg" src="default-placeholder.png" />
    </a>
  </div>
</div>

<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/owl.carousel.min.js"></script>

<script>
  $('.owl-carousel').owlCarousel({
    responsive: {
      0: {
        items: 1,
      },
      700: {
        items: 6,
      },
      1000: {
        items: 9,
      },
    },
  });
</script>

显示效果图片

我尝试更改高度,希望这可能会解决问题,但它什么都没做,只是调整了容器的大小。

英文:

I am trying to make pictures be in a carousel horizontally, however whenever I try, it displays it weird like it is vertical. Here is a snippet of my code

&lt;div class=&quot;owl-carousel owl-theme&quot;&gt;
  &lt;div class=&quot;item&quot;&gt;
    &lt;a href=&quot;link&quot;&gt;
      &lt;img class=&quot;gameimg&quot; src=&quot;default-placeholder.png&quot; /&gt;
    &lt;/a&gt;
  &lt;/div&gt;
&lt;/div&gt;

&lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.1/jquery.min.js&quot;&gt;&lt;/script&gt;
&lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/owl.carousel.min.js&quot;&gt;&lt;/script&gt;

&lt;script&gt;
  $(&#39;.owl-carousel&#39;).owlCarousel({
    responsive: {
      0: {
        items: 1,
      },
      700: {
        items: 6,
      },
      1000: {
        items: 9,
      },
    },
  });
&lt;/script&gt;

Picture of what it looks like

I attempted to try to change the height, hoping that would maybe solve it however it didn't do anything but resize the container it was in.

答案1

得分: 1

问题在于您没有在HTML中包含Owl Carousel的样式表,您可以在它们的文档中查看安装指南:

在添加这些样式表之后,以下是有效的代码:

<!DOCTYPE html>

<html>
  <head>
    <meta charset="utf-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <title>您的标题</title>
    <meta name="description" content="" />
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <link
      rel="stylesheet"
      href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.carousel.css"
    />
    <link
      rel="stylesheet"
      href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.theme.default.css"
    />
  </head>
  <body>
    <div class="owl-carousel owl-theme">
      <div class="item">
        <a href="link">
          <img class="gameimg" src="https://via.placeholder.com/200" />
        </a>
      </div>
      <!-- 其他幻灯片项目 -->
    </div>

    <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/owl.carousel.min.js"></script>

    <script>
      $('.owl-carousel').owlCarousel({
        responsive: {
          0: {
            items: 1,
          },
          700: {
            items: 6,
          },
          1000: {
            items: 9,
          },
        },
      });
    </script>
  </body>
</html>
英文:

The problem is that you're not including Owl Carousel's stylesheets in your HTML, you can see the installation guide on their docs:

Here is the working code after adding these stylesheets:

&lt;!DOCTYPE html&gt;

&lt;html&gt;
  &lt;head&gt;
    &lt;meta charset=&quot;utf-8&quot; /&gt;
    &lt;meta http-equiv=&quot;X-UA-Compatible&quot; content=&quot;IE=edge&quot; /&gt;
    &lt;title&gt;&#129417;&lt;/title&gt;
    &lt;meta name=&quot;description&quot; content=&quot;&quot; /&gt;
    &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1&quot; /&gt;
    &lt;link
      rel=&quot;stylesheet&quot;
      href=&quot;https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.carousel.css&quot;
    /&gt;
    &lt;link
      rel=&quot;stylesheet&quot;
      href=&quot;https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.theme.default.css&quot;
    /&gt;
  &lt;/head&gt;
  &lt;body&gt;
    &lt;div class=&quot;owl-carousel owl-theme&quot;&gt;
      &lt;div class=&quot;item&quot;&gt;
        &lt;a href=&quot;link&quot;&gt;
          &lt;img class=&quot;gameimg&quot; src=&quot;https://via.placeholder.com/200&quot; /&gt;
        &lt;/a&gt;
      &lt;/div&gt;
      &lt;div class=&quot;item&quot;&gt;
        &lt;a href=&quot;link&quot;&gt;
          &lt;img class=&quot;gameimg&quot; src=&quot;https://via.placeholder.com/200&quot; /&gt;
        &lt;/a&gt;
      &lt;/div&gt;
      &lt;div class=&quot;item&quot;&gt;
        &lt;a href=&quot;link&quot;&gt;
          &lt;img class=&quot;gameimg&quot; src=&quot;https://via.placeholder.com/200&quot; /&gt;
        &lt;/a&gt;
      &lt;/div&gt;
      &lt;div class=&quot;item&quot;&gt;
        &lt;a href=&quot;link&quot;&gt;
          &lt;img class=&quot;gameimg&quot; src=&quot;https://via.placeholder.com/200&quot; /&gt;
        &lt;/a&gt;
      &lt;/div&gt;
      &lt;div class=&quot;item&quot;&gt;
        &lt;a href=&quot;link&quot;&gt;
          &lt;img class=&quot;gameimg&quot; src=&quot;https://via.placeholder.com/200&quot; /&gt;
        &lt;/a&gt;
      &lt;/div&gt;
      &lt;div class=&quot;item&quot;&gt;
        &lt;a href=&quot;link&quot;&gt;
          &lt;img class=&quot;gameimg&quot; src=&quot;https://via.placeholder.com/200&quot; /&gt;
        &lt;/a&gt;
      &lt;/div&gt;
      &lt;div class=&quot;item&quot;&gt;
        &lt;a href=&quot;link&quot;&gt;
          &lt;img class=&quot;gameimg&quot; src=&quot;https://via.placeholder.com/200&quot; /&gt;
        &lt;/a&gt;
      &lt;/div&gt;
      &lt;div class=&quot;item&quot;&gt;
        &lt;a href=&quot;link&quot;&gt;
          &lt;img class=&quot;gameimg&quot; src=&quot;https://via.placeholder.com/200&quot; /&gt;
        &lt;/a&gt;
      &lt;/div&gt;
      &lt;div class=&quot;item&quot;&gt;
        &lt;a href=&quot;link&quot;&gt;
          &lt;img class=&quot;gameimg&quot; src=&quot;https://via.placeholder.com/200&quot; /&gt;
        &lt;/a&gt;
      &lt;/div&gt;
      &lt;div class=&quot;item&quot;&gt;
        &lt;a href=&quot;link&quot;&gt;
          &lt;img class=&quot;gameimg&quot; src=&quot;https://via.placeholder.com/200&quot; /&gt;
        &lt;/a&gt;
      &lt;/div&gt;
    &lt;/div&gt;

    &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.1/jquery.min.js&quot;&gt;&lt;/script&gt;
    &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/owl.carousel.min.js&quot;&gt;&lt;/script&gt;

    &lt;script&gt;
      $(&#39;.owl-carousel&#39;).owlCarousel({
        responsive: {
          0: {
            items: 1,
          },
          700: {
            items: 6,
          },
          1000: {
            items: 9,
          },
        },
      });
    &lt;/script&gt;
  &lt;/body&gt;
&lt;/html&gt;

huangapple
  • 本文由 发表于 2023年2月14日 09:06:38
  • 转载请务必保留本文链接:https://go.coder-hub.com/75442582.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定