vue-awesome-swiper輪播插件

来源:https://www.cnblogs.com/VCplus/archive/2019/10/06/11627067.html
-Advertisement-
Play Games

1. github上搜索vue-awesome-swiper 2. readme中有安裝方法,建議在插件名後@版本號,使用穩定的老版本 npm install [email protected] --save 3. 在項目main.js中引入 4.創建單文件組件Swiper.vue(單 ...


1. github上搜索vue-awesome-swiper

2. readme中有安裝方法,建議在插件名後@版本號,使用穩定的老版本 npm install vue-awesome-swiper@x.x.x --save 

3. 在項目main.js中引入

import Vue from 'vue'
import VueAwesomeSwiper from 'vue-awesome-swiper'

// require styles
import 'swiper/dist/css/swiper.css'

Vue.use(VueAwesomeSwiper, /* { default global options } */)

4.創建單文件組件Swiper.vue(單文件組件三部分template、script、style)

<template>
    <swiper :options="swiperOption">
        <!-- slides -->
     //這裡是輪播的內容 <swiper-slide>I'm Slide 1</swiper-slide> <swiper-slide>I'm Slide 2</swiper-slide> <swiper-slide>
      <img src=""/>
     </swiper-slide> <swiper-slide>I'm Slide 4</swiper-slide> <swiper-slide>I'm Slide 5</swiper-slide> <swiper-slide>I'm Slide 6</swiper-slide> <swiper-slide>I'm Slide 7</swiper-slide> <!-- Optional controls --> <div class="swiper-pagination" slot="pagination"></div>
     //兩個箭頭,不需要可以刪了 <div class="swiper-button-prev" slot="button-prev"></div> <div class="swiper-button-next" slot="button-next"></div>
     //滾動條,不需要可以刪了 <div class="swiper-scrollbar" slot="scrollbar"></div> </swiper> </template> <script> export default { name:
'HomeSwiper', // 子組件的data必須是個函數 data() { return { swiperOption: {} } }, } </script> <style lang="stylus" scoped> </style>

5. 在別的頁面中引用,如在Home.vue

<template>
    <div>
        <home-header></home-header>
        <home-swiper></home-swiper>
    </div>
</template>

<script>
import HomeHeader from './component/Header'
import HomeSwiper from './component/Swiper'
export default {
    name: 'Home',
    components: {
        HomeHeader,
        HomeSwiper
    }

}
</script>

<style lang="stylus">
  
</style>

6.防抖動:在網速不好的情況下,swiper未載入出前,下方的div會占據,等到swiper出來時,占據位置的div會蹦走

處理方法:swiper外層嵌套div,讓這個div撐開高度

<template>
    <div class="wrapper">
        <swiper :options="swiperOption">
            ...
        </swiper>
    </div>
</template>

<script>
    ...
</script>

<style lang="stylus" scoped>
  .wrapper
    overflow: hidden
    width:100%
    height:0
    padding-bottom: 31.25%   (寬高比,如果寫在height,那麼是和父級元素的高度,不是對比wrapper的寬度)
</style>

7.輪播圖下麵跟著跑的一排小圓點

<template>
    <div class="wrapper">
        <swiper :options="swiperOption">
            <!-- slides -->
            <swiper-slide>I'm Slide 1</swiper-slide>
            <swiper-slide>I'm Slide 2</swiper-slide>
            <swiper-slide>I'm Slide 3</swiper-slide>
            <swiper-slide>I'm Slide 4</swiper-slide>
            <swiper-slide>I'm Slide 5</swiper-slide>
            <swiper-slide>I'm Slide 6</swiper-slide>
            <swiper-slide>I'm Slide 7</swiper-slide>
            <!-- Optional controls -->
            <div class="swiper-pagination" slot="pagination"></div>
            <div class="swiper-button-prev" slot="button-prev"></div>
            <div class="swiper-button-next" slot="button-next"></div>
            <div class="swiper-scrollbar" slot="scrollbar"></div>
        </swiper>
    </div>
</template>

<script>
export default {
    name: 'HomeSwiper',
    // 子組件的data必須是個函數
    data() {
        return {
            swiperOption: {
                pagination: 'swiper-pagination'
            }
        }
    },
}
</script>

<style lang="stylus" scoped>
  //三個箭頭是穿透,這樣就突破了scoped的限制
  //這個class名從何而來,是從頁面中審查元素得到的
  .wrapper >>> .swiper-pagination-bullet-active
    background: red !important
  .wrapper
    overflow: hidden
    width:100%
    height:0
    padding-bottom: 31.25%   (寬高比,如果寫在height,那麼是和父級元素的高度,不是對比wrapper的寬度)
</style>

8.Vue是數據驅動的框架,輪播的圖片地址和數量不該固定寫死

處理方法:v-for迴圈item,註意迴圈要加key

<template>
    <div class="wrapper">
        <swiper :options="swiperOption">
            <!-- slides -->
            <swiper-slide v-for="item of swiperList" :key="item.id">
          <img :src="item.imgUrl" />
       </swiper-slide>
<!-- Optional controls --> <div class="swiper-pagination" slot="pagination"></div> </swiper> </div> </template> <script> export default { name: 'HomeSwiper', // 子組件的data必須是個函數 data() { return { swiperOption: { pagination: 'swiper-pagination' }, swiperList: [{ id: '0001', imgUrl: 'http://lkadand.adoaidiajd.jada.jpg' }, { id: '0002', imgUrl: 'jndakm.adkand.sda.jpg' }] } }, } </script> <style lang="stylus" scoped> //三個箭頭是穿透,這樣就突破了scoped的限制 //這個class名從何而來,是從頁面中審查元素得到的 .wrapper >>> .swiper-pagination-bullet-active background: red !important .wrapper overflow: hidden width:100% height:0 padding-bottom: 31.25% (寬高比,如果寫在height,那麼是和父級元素的高度,不是對比wrapper的寬度) </style>

9.迴圈輪播

處理方法:加loop值為true

<template>
    <div class="wrapper">
        <swiper :options="swiperOption">
            <!-- slides -->
            <swiper-slide v-for="item of swiperList" :key="item.id"><img :src="item.imgUrl" /></swiper-slide>
            <!-- Optional controls -->
            <div class="swiper-pagination" slot="pagination"></div>
        </swiper>
    </div>
</template>

<script>
export default {
    name: 'HomeSwiper',
    // 子組件的data必須是個函數
    data() {
        return {
            swiperOption: {
                pagination: 'swiper-pagination',
                loop: true
            },
            swiperList: [{ id: '0001', imgUrl: 'http://lkadand.adoaidiajd.jada.jpg' }, { id: '0002', imgUrl: 'jndakm.adkand.sda.jpg' }]
        }
    },
}
</script>

<style lang="stylus" scoped>
  //三個箭頭是穿透,這樣就突破了scoped的限制
  //這個class名從何而來,是從頁面中審查元素得到的
  .wrapper >>> .swiper-pagination-bullet-active
    background: red !important
  .wrapper
    overflow: hidden
    width:100%
    height:0
    padding-bottom: 31.25%   (寬高比,如果寫在height,那麼是和父級元素的高度,不是對比wrapper的寬度)
</style>

 


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

-Advertisement-
Play Games
更多相關文章
  • 1.1 JDK 安裝 JDK 的配置,初學java 開發,那是必須會的。 下載,遇到的問題就是要註冊oracle 的賬號,還有你要下載特定版本,比如jdk 1.7,jdk 1.6,很難找到在哪裡。解決方案在這裡:http://jdk.java.net/java-se-ri/7 ,直接選擇對應的版本下 ...
  • 簡單動畫 (1)簡單動畫通常稱之為“過渡transition” Transition-property:需要過渡的屬性,但是並非所有的屬性都支持過渡。 Transition-duration:過渡的時間; 簡寫:transition:all 時間; (2)漸變時間函數 Transition-timi ...
  • 一般所說的黑白圖片,其實在黑白之間還有深淺不一的各種灰色。所謂二值化,即是將這樣的圖轉為僅有純黑和純白兩種顏色。這在圖像處理中有不少應用,博客園上有不少文章講解得很詳細。我所關註的僅是一種應用。本來白紙黑字的內容,因為拍攝的關係,而帶上其他顏色,或是年代久遠,紙張泛黃,造成內容的對比度下降,有時甚至 ...
  • 1)類型轉換,typeof的用法例 3.1.1<HTML><head> <meta http-equiv="content-type" content="text/html; charset=utf-8"/></head><BODY><SCRIPT LANGUAGE="JavaScript"> <! ...
  • `onmousewheel` ...
  • 一.自己給自己定的需求 滑鼠滑輪移動合適位置出現小標題 滑鼠下滑時候出現,滑鼠上滑時候消失 淡出的效果 二.代碼 三.效果展示 ...
  • vue 的虛擬 DOM 有什麼好處,速度快,為什麼快,因為減小了頁面渲染過程的次數 ...
  • 一.HTML實體(HTML Entites) 1.HTML實體:W3C規定在瀏覽器看到的特殊符號必須用HTML實體 單引號(') &#39; 雙引號(") &quot; 大於(>) &gt; 小於(<) &lt; 連接符(&) &amp; 不間斷空格 &nbsp; 版權 &copy; 商標 &reg ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...