海南苯概企业管理有限公司

0712-2888027 189-8648-0214
微信公眾號

孝感風(fēng)信網(wǎng)絡(luò)科技有限公司微信公眾號

當(dāng)前位置:主頁 > 技術(shù)支持 > Javascript/JQuery > Swiper開源、免費、強大的PC端/移動端觸摸滑動插件

Swiper開源、免費、強大的PC端/移動端觸摸滑動插件

時間:2016-12-25來源:風(fēng)信官網(wǎng) 點擊: 1402次
Swiper是純javascript打造的滑動特效插件,面向手機、平板電腦等移動終端。Swiper能實現(xiàn)觸屏焦點圖、觸屏Tab切換、觸屏多圖切換等常用效果。Swiper開源、免費、穩(wěn)定、使用簡單、功能強大,是架構(gòu)移動終端網(wǎng)站的重要選擇!
 
Swiper基礎(chǔ)演示:http://www.swiper.com.cn/demo/index.html
Swiper開源、免費、強大的PC端/移動端觸摸滑動插件
 
Swiper在移動端的實際應(yīng)用(演示):http://www.swiper.com.cn/demo/senior/index.html
Swiper開源、免費、強大的PC端/移動端觸摸滑動插件
 
Swiper在電腦端的實際應(yīng)用(演示):http://www.swiper.com.cn/demo/web/index.html
Swiper開源、免費、強大的PC端/移動端觸摸滑動插件
 
Swiper開源、免費、強大的PC端/移動端觸摸滑動插件
 
Swiper中文API:http://www.swiper.com.cn/api/index.html
 
Swiper使用方法

  1.首先加載插件,需要用到的文件有swiper.min.js和swiper.min.css文件。

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

如果你的頁面加載了jQuery.js或者zepto.js,你可以選擇使用更輕便的swiper.jquery.min.js。

<!DOCTYPE html>
<html>
<head>
    ...
    <link rel="stylesheet" href="path/to/swiper.min.css">
</head>
<body>
    ...
    <script src="path/to/jquery.js"></script>
    <script src="path/to/swiper.jquery.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: '.swiper-pagination',
    
    // 如果需要前進(jìn)后退按鈕
    nextButton: '.swiper-button-next',
    prevButton: '.swiper-button-prev',
    
    // 如果需要滾動條
    scrollbar: '.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)能正常切換了,如果沒有,你可以參考下這個測試包。現(xiàn)在開始添加各種選項和參數(shù)豐富你的Swiper,開啟華麗移動前端創(chuàng)作之旅。



*建議不使用Source Map功能,請把js壓縮文件最后一行//# sourceMappingURL=maps/swiper.min.js.map 刪掉。以免在某些瀏覽器出現(xiàn)以下提示:



如需要使用Source Map,演示包里面有該map文件,請放在相應(yīng)的位置。

欄目列表
推薦內(nèi)容
熱點內(nèi)容
展開
德安县| 江油市| 吉木萨尔县| 石门县| 开江县| 南丰县| 兰考县| 武强县| 定边县| 招远市| 南涧| 衡阳县| 托克托县| 刚察县| 阳谷县| 开阳县| 牡丹江市| 明光市| 宣恩县| 定安县| 平阴县| 昌邑市| 南漳县| 区。| 中阳县| 兴安盟| 泰来县| 乐亭县| 甘谷县| 合作市| 措美县| 宝山区| 中江县| 瑞昌市| 体育| 和田县| 屏南县| 北流市| 涿鹿县| 石狮市| 临沭县|