Swiper-輪播圖。

来源:http://www.cnblogs.com/qiaocanpeng/archive/2017/06/25/7077687.html
-Advertisement-
Play Games

Swiper(Swiper master)是目前應用較廣泛的移動端網頁觸摸內容滑動js插件,可以用來做輪播和滑動. 初始化 <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <link rel="styleshe ...


Swiper(Swiper master)是目前應用較廣泛的移動端網頁觸摸內容滑動js插件,可以用來做輪播和滑動.

  • 初始化

    <!DOCTYPE html>
    <html>
      <head>
          <meta charset="UTF-8">
          <title></title>
          <link rel="stylesheet" type="text/css" href="swiper.css"/>
          <style>
              .swiper-container {
                  width: 600px;
                  height: 300px;
              } 
              .swiper-slide{
                  font-size: 50px
              }
              .swiper-slide:nth-of-type(1){
                  background-color: cornflowerblue;
              }
              .swiper-slide:nth-of-type(2){
                  background-color: coral;
              }
              .swiper-slide:nth-of-type(3){
                  background-color: yellowgreen;
              }
          </style>
      </head>
      <body>
          <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>
    
              <!-- 如果需要導航按鈕 -->
              <div class="swiper-button-prev"></div>
              <div class="swiper-button-next"></div>
    
              <!-- 如果需要滾動條 -->
              <div class="swiper-scrollbar"></div>
          </div>
          <!--導航等組件可以放在container之外-->
    
          <script src="swiper.js"></script>
          <script>        
              var mySwiper = new Swiper ('.swiper-container', {
                  direction: 'vertical',
    //                loop: true,
    //                
    //                // 如果需要分頁器
                  pagination: '.swiper-pagination',
    //                
    //                // 如果需要前進後退按鈕
                  nextButton: '.swiper-button-next',
                  prevButton: '.swiper-button-prev',
    //                
    //                // 如果需要滾動條
                  scrollbar: '.swiper-scrollbar',
              })
            </script>
      </body>
    </html>

     

  • 基本配置
    var mySwiper = new Swiper ('.swiper-container', {
                       // 滑動方向
                      // horizontal水平
                      // vertical垂直
                  direction: 'horizontal',
                  // 初始化時候slide的索引(從0開始)
                  initialSlide: 1,                
                  // 手指鬆開至slide貼合的時間
                  speed:3000,                
                  // 設置自動播放的事件間隔
                  autoplay: 2000,
                  // 可顯示數量
                  slidesPerView:2,                
                  // 滑塊居中
                  centeredSlides:true,
              })

     

  • 觸摸設置

      var mySwiper = new Swiper ('.swiper-container', {
                  direction: 'horizontal',
    
                  // 觸摸距離與slide滑動距離的比率 
                  touchRatio:0.1,
    
                  // 無法滑動
                  onlyExternal:true,
    
                  // 滑塊跟隨手指進行移動
                  followFinger:false,
    
                  // 定義longSwipesMs
                  longSwipesMs:1000,
    
                  longSwipes:false,
    
                  shortSwipes:false,
    
                  longSwipesRatio:0.5,
    
                  touchAngle:10,
              })
    禁止切換和前進後退
    
     <body>
         <div class="swiper-container">
             <div class="swiper-wrapper">
                 <div class="swiper-slide stop">Slide 1</div>
                 <!--<div class="swiper-slide swiper-no-swiping">Slide 2</div>-->
                 <div class="swiper-slide">Slide 2</div>
                 <div class="swiper-slide">Slide 3</div>
             </div>
         </div>
         <button class="prev">prev</button>
         <button class="next">next</button>
    
         <script src="swiper.js"></script>
         <script>        
             var mySwiper = new Swiper ('.swiper-container', {
                 direction: 'horizontal',
                 noSwiping:true,
                 noSwipingClass : "stop",
                 nextButton : ".next",
                 prevButton : ".prev",
             })
           </script>
    分頁器
    
          <style>
              .swiper-container {
                  width: 600px;
                  height: 300px;
              } 
              .swiper-slide{
                  font-size: 50px
              }
              .swiper-slide:nth-of-type(1){
                  background-color: cornflowerblue;
              }
              .swiper-slide:nth-of-type(2){
                  background-color: coral;
              }
              .swiper-slide:nth-of-type(3){
                  background-color: yellowgreen;
              }
              .swiper-pagination-bullet{
                  width: 20px;
                  height: 20px;
              }
              .swiper-pagination-bullet-active{
                  background-color: yellow;
              }
          </style>
      </head>
      <body>
          <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>
          </div>
    
          <script src="swiper.js"></script>
          <script>        
              var mySwiper = new Swiper ('.swiper-container', {
                  direction: 'horizontal',                
                  pagination : ".swiper-pagination",                
                  paginationType : "bullets",
                  paginationType : "fraction",
                  paginationType : "progress",                
                  paginationClickable : true,
                  paginationHide : true,
                  paginationElement : "i",
                  paginationBulletRender : function( swiper,index,classname ){
                      return "<span class='"+ classname +"'>"+ (index+1) +"</span>"
                  }
              })
            </script>
      </body>
    切換效果
    
      <script>        
              var mySwiper = new Swiper ('.swiper-container', {
                  direction: 'horizontal',
    
                  effect : "slide",
                  effect : "fade",
                  effect : "cube",
                  effect : "coverflow",
                  effect : "flip",
              })
            </script>
    進程
    
    <body>
          <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>
          <button id="btn">按鈕</button>
    
          <script src="swiper.js"></script>
          <script>        
              var mySwiper = new Swiper ('.swiper-container', {
                  direction: 'horizontal',
    
              })
    
              btn.onclick = function(){
                  alert( mySwiper.progress );
                  alert( mySwiper.slides[0].progress );
                  console.log( mySwiper.slides[0].progress,mySwiper.slides[1].progress,mySwiper.slides[2].progress );
              }
    
              setInterval(function(){
                  console.log( mySwiper.slides[0].progress,mySwiper.slides[1].progress,mySwiper.slides[2].progress );
              },20)
            </script>
      </body>

     

  • 常用屬性和回調

    <body>
          <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>
          <button id="btn">按鈕</button>
          <script src="swiper.js"></script>
          <script>        
              var mySwiper = new Swiper ('.swiper-container', {
                  direction: 'horizontal',
    
                  speed : 2000,
    
                  onSlideChangeStart : function(){
                      console.log( "開始滑動" );
                  },
                  onSlideChangeEnd : function(){
                      console.log( "滑動結束" );
                  }
              })
    
              console.log( mySwiper.width );
              console.log( mySwiper.height );
    
              btn.onclick = function(){
                  console.log( mySwiper.translate );
                  console.log( mySwiper.activeIndex );
                  console.log( mySwiper.previousIndex );
              }        
            </script>
      </body>

     


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 閉包是什麼? 閉包是指程式中有許多白能量和綁定變數的執行環境。 在我看來就是:程式的代碼段允許存在一級函數並且一級函數不能被釋放,以及韓你數沒有釋放之前,外部可以使用一級函數的局部變數。 簡單的說閉包就是在外部可以使用局部變數。 閉包的功能: 1、外部可以使用局部變數 2、使函數不能釋放 為什麼一級 ...
  • js 代碼 ...
  • 1.內部js: 在直接在頁面的<script></script>標簽內寫js代碼 優點:相對於使用行內js,內部js代碼較為集中,與頁面結構的實現代碼耦合度較低,比較便於維護 缺點:js代碼僅限於當前頁面的使用,代碼無法被多個頁面重覆使用,導致代碼冗餘度較高 2.外部js: 引入外部的js文件(推薦 ...
  • 前端性能優化的方法? content方面 1,減少HTTP請求:合併文件、CSS精靈、inline Image 2,減少DNS查詢:DNS查詢完成之前瀏覽器不能從這個主機下載任何任何文件。方法:DNS緩存、將資源分佈到恰當數量的主機名,平衡並行下載和DNS查詢 3,避免重定向:多餘的中間訪問 4,使 ...
  • 學習前端有一段時間了,一直在看書上的理論知識,而實戰項目卻很少。師兄常說,想要知道自己的實力有多少,知識掌握了多少,最好的方法就是去實踐了,實踐出真知嘛。於是決定在這個假期里,主要是通過項目的實踐以及理論知識的輔助來提高代碼水平。首先是做幾個HTML5+CSS3靜態頁面佈局的練習,查缺補漏知識點並且 ...
  • vue的事件: vue事件簡寫: vue中事件是 v-on:click=' show()' 但是我嫌棄它寫太長每次動 v-on: 事件 vue中就有事件簡寫 @click='show()' 這會不會就好點了呢!<!DOCTYPE html> vue的事件對象: vue中當然也有事件對象了 , 這樣@ ...
  • animation-timging-function 主要是控制css動畫從開始到結束的速度。 linear:線性過渡。等同於貝塞爾曲線(0.0, 0.0, 1.0, 1.0)ease:平滑過渡。等同於貝塞爾曲線(0.25, 0.1, 0.25, 1.0)ease-in:由慢到快。等同於貝塞爾曲線( ...
  • 一句話概括的話:閉包就是一個函數,捕獲作用域內的外部綁定。 官方的定義:一個擁有許多變數和綁定了這些變數的環境的表達式(通常是一個函數),因為這些變數也稱為該表達式的一部分。 自由變數和閉包的關係:自由變數閉合於閉包的創建。 內部邏輯就是 自由變數:如果一個函數內部有其他函數,那麼這些內部函數可以訪 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...