swiperカスタム改ページ器のスタイル


本論文の例では、Swiperカスタム改ページ器のスタイルコードを共有します。参考にしてください。具体的な内容は以下の通りです。

js主要コード

pagination: {
     //          ----   
    el: '.custom-pagination',

     //      ----   
     clickable: true,

     //           ----   
    type: 'custom',

          //           ,               。
          renderCustom: function (swiper, current, total) {
           
            console.log(current);//1 2 3 4
          }
},
一、el
セパレータ容器のcssセレクタまたはHTMLタグ。改ページ器などのコンポーネントはcontainerの外に置くことができ、異なるSwiperのコンポーネントは区別されるべきである。
二、セパレータスタイルの種類は任意です。
‘bullets’ドット(デフォルト)
‘fraction’分式
プログレスバープログレスバー
‘custom’のカスタマイズ
三、render Custom()
特別な種類のセパレータをカスタマイズして、セパレータタイプをカスタマイズした場合に使用できます。
四、slade ToLoop()
ループモードではSwiperが指定のsladeに切り替わります。切り替えたのはsladeインデックスがrealIndexです。
ソース

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

<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>

  <!-- 1、CDN     -->
  <link rel="stylesheet" href="https://unpkg.com/swiper/swiper-bundle.css">
  <script src="https://unpkg.com/swiper/swiper-bundle.js"> </script>
  <script src="https://ajax.aspnetcdn.com/ajax/jquery/jquery-3.2.1.min.js"></script>

  <!--2、       -->
  <!-- <script src="swiper.min.js"></script>
  <link rel="stylesheet" href="swiper.min.css" rel="external nofollow" >
  <script src="jquery.js"></script> -->
  <style>
    * {
      margin: 0;
      padding: 0;
    }

    ul {
      list-style: none;
      text-align: center;
      overflow: hidden;
    }

    a {
      text-decoration: none;
      color: #000;
    }

    .swiper-content {
      width: 80%;
      overflow: hidden;
      margin: 0 auto;
    }

    .swiper-content .title {
      height: 100px;
      display: flex;
      align-items: center;
      justify-content: space-around;
    }

    .swiper-content .nav-item {
      float: left;
      display: block;
      margin-right: 30px;
      width: 50px;
      height: 30px;
      line-height: 30px;
    }

    /*         */
    .swiper-content .nav-item.active {
      background-color: #378ee6;
    }

    /*        */
    .swiper-content .swiper-container {
      height: 300px;
      background-color: pink;
    }

  </style>
</head>

<body>
  <div class="swiper-content">

    <!--       -->
    <div class="title">
      <!--  ul            custom-pagination -->
      <ul class="nav custom-pagination">
        <li class="nav-item active">
          <a href="javascript:;" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >  </a>
        </li>
        <li class="nav-item">
          <a href="javascript:;" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >  </a>
        </li>
        <li class="nav-item">
          <a href="javascript:;" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >  </a>
        </li>
        <li class="nav-item">
          <a href="javascript:;" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >  </a>
        </li>
      </ul>
    </div>

    <!--     -->
    <div class="swiper-container">
      <div class="swiper-wrapper">
        <div class="swiper-slide">
          <h1>1</h1>
        </div>
        <div class="swiper-slide">
          <h1>2</h1>
        </div>
        <div class="swiper-slide">
          <h1>3</h1>
        </div>
        <div class="swiper-slide">
          <h1>4</h1>
        </div>
      </div>
    </div>

  </div>

  <script>
    var mySwiper = new Swiper('.swiper-container',

      {
        //     
        loop: true,
        
        pagination: {
          //          ----   
          el: '.custom-pagination',

          //      ----   
          clickable: true,

          //           ----   
          type: 'custom',

          //           ,               。
          renderCustom: function (swiper, current, total) {
            //  console.log(current);//1 2 3 4

            // 1、          ---                    。
            $('.custom-pagination').children().eq(current - 1).addClass('active').siblings().removeClass('active');

            // 2、               (    )----    slideToLoop--
            $('.custom-pagination').on('click', 'li', function () {
              mySwiper.slideToLoop($(this).index(), 1000, false)
            })
          }
        },
      })
  </script>
</body>
</html>
以上が本文の全部です。皆さんの勉強に役に立つように、私たちを応援してください。