国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 語言 > JavaScript > 正文

Swiper 4.x 使用方法(移動端網(wǎng)站的內(nèi)容觸摸滑動)

2024-05-06 15:34:01
字體:
供稿:網(wǎng)友

Swiper常用于移動端網(wǎng)站的內(nèi)容觸摸滑動

Swiper是純javascript打造的滑動特效插件,面向手機、平板電腦等移動終端。

Swiper能實現(xiàn)觸屏焦點圖、觸屏Tab切換、觸屏多圖切換等常用效果。

Swiper開源、免費、穩(wěn)定、使用簡單、功能強大,是架構(gòu)移動終端網(wǎng)站的重要選擇!

1.首先加載插件,需要用到的文件有swiper.min.js和swiper.min.css文件。可下載Swiper文件或使用CDN。

<!DOCTYPE html><html><head>  ...  <link rel="stylesheet" href="path/to/swiper.min.css" rel="external nofollow" ></head><body>  ...  <script src="path/to/swiper.min.js"></script></body></html>

2.HTML內(nèi)容。

<div class="swiper-container">  <div class="swiper-wrapper">    <div class="swiper-slide">Slide 1</div>    <div class="swiper-slide">Slide 2</div>    <div class="swiper-slide">Slide 3</div>  </div>  <!-- 如果需要分頁器 -->  <div class="swiper-pagination"></div>    <!-- 如果需要導(dǎo)航按鈕 -->  <div class="swiper-button-prev"></div>  <div class="swiper-button-next"></div>    <!-- 如果需要滾動條 -->  <div class="swiper-scrollbar"></div></div>導(dǎo)航等組件可以放在container之外

3.你可能想要給Swiper定義一個大小,當(dāng)然不要也行。

.swiper-container {  width: 600px;  height: 300px;} 

4.初始化Swiper:最好是挨著</body>標(biāo)簽

<script>     var mySwiper = new Swiper ('.swiper-container', {  direction: 'vertical',  loop: true,    // 如果需要分頁器  pagination: {   el: '.swiper-pagination',  },    // 如果需要前進后退按鈕  navigation: {   nextEl: '.swiper-button-next',   prevEl: '.swiper-button-prev',  },    // 如果需要滾動條  scrollbar: {   el: '.swiper-scrollbar',  }, })     </script></body>

如果不能寫在HTML內(nèi)容的后面,則需要在頁面加載完成后再初始化(不推薦)。

<script type="text/javascript">window.onload = function() { ...}</script>

或者這樣(Jquery和Zepto)

<script type="text/javascript">$(document).ready(function () { ...})</script>

5.完成。恭喜你,現(xiàn)在你的Swiper應(yīng)該已經(jīng)能正常切換了。

發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表

圖片精選

主站蜘蛛池模板: 临汾市| 沁水县| 涟水县| 波密县| 康定县| 蓬溪县| 侯马市| 西盟| 竹溪县| 都匀市| 泰和县| 巩义市| 集安市| 抚顺市| 临朐县| 包头市| 浙江省| 平凉市| 台山市| 南城县| 县级市| 禹城市| 子长县| 凤阳县| 新干县| 蒙城县| 鹤岗市| 南昌县| 黎川县| 成安县| 镇巴县| 得荣县| 会东县| 宾阳县| 怀远县| 壶关县| 买车| 金坛市| 夹江县| 兰考县| 金坛市|