您好,登錄后才能下訂單哦!
這篇文章將為大家詳細(xì)講解有關(guān)使用swiper怎么自定義一個(gè)分頁(yè)器,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個(gè)參考,希望大家閱讀完這篇文章后對(duì)相關(guān)知識(shí)有一定的了解。
解決問(wèn)題:不想使用swiper的自帶的圓鈕式的分頁(yè)器,想使用自定義的分頁(yè)器。
解決方案:利用swiper提供的paginationCustomRender()方法(自定義特殊類型分頁(yè)器,當(dāng)分頁(yè)器類型設(shè)置為自定義時(shí)可用。)
下面的代碼可以直接賦值粘貼到html文件里面然后作為項(xiàng)目在瀏覽器打開,但是圖片需要你引用自己的本地圖片并設(shè)置好路徑,否則你是看不到輪播圖片的。代碼如下(參考注釋很重要):
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>swiper自定義分頁(yè)器用法</title> <link href="swiper-3.4.2.min.css" rel="stylesheet" /> <style> * { padding: 0; margin: 0; } .swiper-container { position: relative; width: 100%; height: 100%; } .swiper-slide { text-align: center; font-size: 18px; background: #fff; display: -webkit-box; display: -ms-flexbox; display: -webkit-flex; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; -webkit-justify-content: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; -webkit-align-items: center; align-items: center; } .swiper-slide img { display: block; width: 100%; max-width: 100%; } /*包裹自定義分頁(yè)器的div的位置等CSS樣式*/ .swiper-pagination-custom { bottom: 10px; left: 0; width: 100%; } /*自定義分頁(yè)器的樣式,這個(gè)你自己想要什么樣子自己寫*/ .swiper-pagination-customs { width: 30px; height: 4px; display: inline-block; background: #000; opacity: .3; margin: 0 5px; } /*自定義分頁(yè)器激活時(shí)的樣式表現(xiàn)*/ .swiper-pagination-customs-active { opacity: 1; background-color: #F78E00; } </style> </head> <body> <div class="swiper-container"> <div class="swiper-wrapper"> <div class="swiper-slide"> <img src="banner1_.jpg" alt="輪播圖1" /> </div> <div class="swiper-slide"> <img src="banner2_.jpg" alt="輪播圖2" /> </div> </div> <div class="swiper-pagination"></div> </div> </body> <script src="jquery.min.js"></script> <script type="text/javascript" src="swiper.min.js"></script> <script> var mySwiper = new Swiper('.swiper-container', { direction: 'horizontal', loop: true, autoplay: 3000,//自動(dòng)輪播 speed: 600, // 如果需要分頁(yè)器 pagination: '.swiper-pagination', paginationType: 'custom',//這里分頁(yè)器類型必須設(shè)置為custom,即采用用戶自定義配置 //下面方法可以生成我們自定義的分頁(yè)器到頁(yè)面上 paginationCustomRender: function(swiper, current, total) { var customPaginationHtml = ""; for(var i = 0; i < total; i++) { //判斷哪個(gè)分頁(yè)器此刻應(yīng)該被激活 if(i == (current - 1)) { customPaginationHtml += '<span class="swiper-pagination-customs swiper-pagination-customs-active"></span>'; } else { customPaginationHtml += '<span class="swiper-pagination-customs"></span>'; } } return customPaginationHtml; } }); </script> </html>
關(guān)于使用swiper怎么自定義一個(gè)分頁(yè)器就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。