swipe輪播插件零基礎實用

来源:https://www.cnblogs.com/zmayan/archive/2019/03/06/10483716.html
-Advertisement-
Play Games

此篇博客整理了常用的輪播效果,適用於所有開發人員 swipe是當下相對而言較好用的輪播插件,下麵是博主整理的demo源代碼,可直接上手(備註:需自己手動swipe所需的j和css) 此段代碼總共是有三個詳細效果,並且備註了初始化js對應的html,和使用swipe當中所需要用到的一些小的屬性控制方法 ...


此篇博客整理了常用的輪播效果,適用於所有開發人員

swipe是當下相對而言較好用的輪播插件,下麵是博主整理的demo源代碼,可直接上手(備註:需自己手動swipe所需的j和css)

此段代碼總共是有三個詳細效果,並且備註了初始化js對應的html,和使用swipe當中所需要用到的一些小的屬性控制方法!

這裡就不一一詳解

博客園開通很久,也一直沒時間好好經營自己的博客,第一篇博客,難免細節的地方,排列順序方法,內容介紹肯定難免存在許些問題,博主承諾以後會記錄的越來越優質

希望大家多多指教

  <!DOCTYPE html>
  <html>
  <head>
  <meta charset="utf-8" />
  <title>公用效果</title>
  <link rel="stylesheet" type="text/css" href="css/swiper.min.css"/>
  <script src="js/swiper.min.js"></script>
  <style type="text/css">
  li{
  list-style: none;
  }
  /*分頁器顏色樣式控制*/
  .swiper-pagination-bullet{
  background-color: #8a6b78 !important;
  opacity: 1 !important;
  }
  .swiper-pagination-bullet-active{
  background-color: #e7cccc !important;
  }
  /*前後按鈕控制樣式*/
  .boxleft{
  background: url(img/gift-left.png) no-repeat !important;
  background-size: 100%;
  outline: none;
  }
  .boxright{
  background: url(img/gift-right.png) no-repeat !important;
  background-size: 100%;
  outline: none;
 

}

/*outline: none;屬性可以去除點擊出現邊框*/

  /*.*/
  /*滑鼠移出隱藏按鈕,移入顯示按鈕*/
  .swiper-container .hide{
  opacity:0;
  }
  .swiper-button-next,.swiper-button-prev{
  transition:opacity .5s;
  }
  /*.*/
  /*主圖下滾動*/
  #box {
  width:1200px;
  margin: 0 auto;
  }
  #box .swiper-wrapper{
  margin-top:40px ;
  padding-left: 12px;
  }
  #box ul>li {
  display: inline-block;
  height: 100%;
  box-sizing: border-box;
  }
  #box ul>li>img {
  width: 170px;
  height: 115px;
  }
  /*上下切換控制*/
  .smlbannertop{
  width: 400px;
  }
  .smlbannertop img {
  width: 400px;
  height: 305px;
  }
  .gallery-thumbs .swiper-slide {
  height: 100%;
  opacity: 0.8;
  }
  .gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
  }
  .smlbannerall{
  width: 1000px;
  }
  .smlbannerall img {
  width: 176px;
  height: 120px;
  margin: 20px 0px 0 8px;
  }
  </style>
  </head>
  <body>
  <!--top banner-->
  <div class="swiper-container" id="bigbanner">
  <div class="swiper-wrapper">
  <div class="swiper-slide"><img src="img/banner01.jpg"></div>
  <div class="swiper-slide"><img src="img/banner02.jpg"></div>
  <div class="swiper-slide"><img src="img/banner03.jpg"></div>
  </div>
  <!--分頁器-->
  <div class="swiper-pagination bigpagination"></div>
  <!--前進後退按鈕-->
  <div class="swiper-button-prev swiper-button-black bigleft"></div>
  <div class="swiper-button-next swiper-button-black bigright"></div>
  </div>
   
   
  <!--主圖下滾動-->
  <div class="swiper-container" style="width: 1300px; margin: 0 auto;">
  <div class="swiper-container" id="box">
  <ul class="swiper-wrapper">
  <li class="swiper-slide">
  <img src="img/choose1.jpg" />
  </li>
  <li class="swiper-slide">
  <img src="img/choose2.jpg" />
  </li>
  <li class="swiper-slide">
  <img src="img/choose3.jpg" />
  </li>
  <li class="swiper-slide">
  <img src="img/choose4.jpg" />
  </li>
  <li class="swiper-slide">
  <img src="img/choose5.jpg" />
  </li>
  <li class="swiper-slide">
  <img src="img/choose3.jpg" />
  </li>
  </ul>
  </div>
  <div class="swiper-button-prev boxleft"></div>
  <div class="swiper-button-next boxright"></div>
  </div>
   
  <!--切換效果-->
  <div class="swiper-container gallery-top smlbannertop">
  <div class="swiper-wrapper">
  <div class="swiper-slide">
  <img src="img/comrecommend.jpg" />
  </div>
  <div class="swiper-slide">
  <img src="img/comrecommend.jpg" />
  </div>
  <div class="swiper-slide">
  <img src="img/comrecommend.jpg" />
  </div>
  <div class="swiper-slide">
  <img src="img/comrecommend.jpg" />
  </div>
  </div>
  </div>
  <div class="swiper-container gallery-thumbs smlbannerall">
  <ul class="swiper-wrapper">
  <li class="swiper-slide">
  <img src="img/comrecommend01.jpg" />
  </li>
  <li class="swiper-slide">
  <img src="img/comrecommend02.jpg" />
  </li>
  <li class="swiper-slide">
  <img src="img/comrecommend03.jpg" />
  </li>
  <li class="swiper-slide">
  <img src="img/comrecommend04.jpg" />
  </li>
  </ul>
  </div>
   
  <script>
  //topbanner
  var mySwiper = new Swiper('#bigbanner', {
  direction: 'horizontal',
  //是否無限輪播
  loop: true,
  //切換時間
  autoplay: {
  delay: 3000,
  disableOnInteraction: true,//用戶操作swiper之後,是否禁止autoplay。預設為true:停止。
  },
  //過渡時間
  speed: 1300,
  // 如果需要分頁器
  pagination: {
  el: '.bigpagination',
  clickable :true,
  },
  // 如果需要前進後退按鈕
  navigation: {
  nextEl: '.bigright',
  prevEl: '.bigleft',
  },
  //切換效果
  effect:"fade"
  })
  //滑鼠移出隱藏按鈕,移入顯示按鈕
  mySwiper.el.onmouseover=function(){
  mySwiper.navigation.$nextEl.removeClass('hide');
  mySwiper.navigation.$prevEl.removeClass('hide');
  }
  mySwiper.el.onmouseout=function(){
  mySwiper.navigation.$nextEl.addClass('hide');
  mySwiper.navigation.$prevEl.addClass('hide');
  }
   
  //主圖下滾動box
  var swiper = new Swiper('#box', {
  //顯示幾個盒子
  slidesPerView: 6,
  //盒子之間的間距
  spaceBetween: 0,
  autoplayDisableOnInteraction:true,
  loop: true,
  autoplay: {
  delay: 2000
  },
  speed: 800,
  // 如果需要前進後退按鈕
  navigation: {
  nextEl: '.boxright',
  prevEl: '.boxleft',
  },
  });
   
  //切換效果
  var galleryThumbs = new Swiper('.smlbannerall', {
  // 控制顯示幾個
  slidesPerView: 4,
  loop: true,
  loopedSlides: 5, //一般設置為本來slide的個數
  watchSlidesVisibility: true,
  watchSlidesProgress: true,
  });
  var galleryTop = new Swiper('.smlbannertop', {
  spaceBetween: 10,
  loop:true,
  loopedSlides: 5, //一般設置為本來slide的個數
  thumbs: {
  swiper: galleryThumbs,
  },
  });
  </script>
  </body>
  </html>
   

 

 

此效果圖一一貼出


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

-Advertisement-
Play Games
更多相關文章
  • 採用 flexbox 彈性容器進行佈局,只做練慣用。 瀏覽器打開時切換到手機模式。 樣本地址: http://tpl.zhuamimi.cn/%E6%89%8B%E6%9C%BA%E7%AB%AF%E9%A1%B5%E9%9D%A2-Flexbox/flex%E7%BB%83%E4%B9%A0-%E ...
  • 1.protractor簡介 官網地址:http://www.protractortest.org/ Protractor是一個end-to-end的測試框架,從網路上得到的答案是Protractor是作為Angular JS應用程式的測試框架。它的構建基於Selenium WebDriver之上, ...
  • 1、每個 Vue 實例在被創建時都要經過一系列的初始化過程——例如,需要設置數據監聽、編譯模板、將實例掛載到 DOM 併在數據變化時更新 DOM 等。同時在這個過程中也會運行一些叫做生命周期鉤子的函數,這給了用戶在不同階段添加自己的代碼的機會。 2、本篇將介紹組件創建期間的4個鉤子函數,分別為: ① ...
  • 由於客戶的需求,將js寫出來的一個統計能夠保存到本地。作為碼奴的我只能慢慢搬磚咯!一開始使用的是html2canvas.js。功能是可以實現,但是有缺陷。話不多說開始搞! 1、引入幾個JS庫 ①:jquery 版本還沒試過我用的是3.1.1 (不貼鏈接了,這個要找很容易) ②:dom-to-imag ...
  • 第一種--對象鍵值去重 第二種--splice刪除去重 第三種--利用數組indexOf方法 第四種--數組下標 第五種 第六種 第七種--es6 set 第八種--filter ...
  • 函數內:1,創建AO對象//Activation Object 2,找函數內形參和變數聲明,將其作為AO對象的屬性名,值為undefined。 3,實參賦到AO對象 形參名里 4,在函數體里找函數聲明(函數名),並賦值。 Window內: 1,創建GO對象//Global Object 2,找函數內 ...
  • [TOC] vue.js 學習筆記3——TypeScript 工具 typescript 通過tsconfig.json 文件配置。 可通過gulp 等工具管理項目自動化編譯和運行。 基礎類型 boolean 布爾、number 數字、string 字元串、enum 枚舉、any 任意、void 空 ...
  • 在做項目的時候遇到一個問題,需要新建一個數組,該數組的元素個數為n,且每個元素的值都為0,可以這樣子做: ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...