使用materialize css滑动div水平

时间:2017-07-11 18:05:29

标签: materialize

我需要知道materializecss的人告诉我是否可以使用materializecss进行此操作?我用谷歌搜索,但没有找到任何材料。

所以我正在寻找像这个例子https://www.codeply.com/go/zAc3W2rzOd

这样的东西

1 个答案:

答案 0 :(得分:0)

是的,有一种方法可以在materializecss中滑动div。你可以在他们的网站上找到一些例子。 Click here示例。

我只是将其中一个滑块示例复制并粘贴到此jsfiddle和下面的部分中。

<html>

  <head>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.99.0/css/materialize.css" />
  </head>

  <body>
    <div class="container" style="padding-top:100px;">
    <div class="carousel carousel-slider center" data-indicators="true">
      <div class="carousel-fixed-item center">
        <a class="btn waves-effect white grey-text darken-text-2">button</a>
      </div>
      <div class="carousel-item red white-text" href="#one!">
        <h2>First Panel</h2>
        <p class="white-text">This is your first panel</p>
      </div>
      <div class="carousel-item amber white-text" href="#two!">
        <h2>Second Panel</h2>
        <p class="white-text">This is your second panel</p>
      </div>
      <div class="carousel-item green white-text" href="#three!">
        <h2>Third Panel</h2>
        <p class="white-text">This is your third panel</p>
      </div>
      <div class="carousel-item blue white-text" href="#four!">
        <h2>Fourth Panel</h2>
        <p class="white-text">This is your fourth panel</p>
      </div>
    </div>
  </div>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.js"></script>
  <script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.99.0/js/materialize.js"></script>
  <script>
   $('.carousel.carousel-slider').carousel({fullWidth: true});
  </script>
  </body>

  </html>

为了使这些滑块工作,materializecss使用jQuery插件Carousel,它也有一些options