小編給大家分享一下基于vue如何實現(xiàn)swipe分頁組件,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
創(chuàng)新互聯(lián)專業(yè)為企業(yè)提供海倫網站建設、海倫做網站、海倫網站設計、海倫網站制作等企業(yè)網站建設、網頁設計與制作、海倫企業(yè)網站模板建站服務,十年海倫做網站經驗,不只是建網站,更提供有價值的思路和整體網絡服務。Vue具體輕量級框架、簡單易學、雙向數(shù)據(jù)綁定、組件化、數(shù)據(jù)和結構的分離、虛擬DOM、運行速度快等優(yōu)勢,Vue中頁面使用的是局部刷新,不用每次跳轉頁面都要請求所有數(shù)據(jù)和dom,可以大大提升訪問速度和用戶體驗。
項目背景
圖片輪播是前端項目必有項,當前有很多效果很酷炫的輪播插件,例如 Swiper 。
但是當我們項目中的圖片輪播只需要一個很簡單的輪播樣式,比如這樣的
我們引用這樣一個 110k 的大插件,就大材小用了。再安利一下,swiper2.x和swiper3.x對移動和PC端支持情況如下圖
當當當當~~~
我們今天的主角登場了, thebird/Swipe ,這個插件完成了圖片輪播需要的基本功能,只有 14.2k ,真真的 輕量級 啊。還有,還有
翻譯一下,就是俺們全支持,不管你是PC端(IE7+)還是移動端瀏覽器。此處應該有掌聲,哈哈~
簡而言之,就是當需要一個簡單的輪播時,可以選用 thebird/Swipe ,自己寫一個組件。
舉個栗子,就是我實現(xiàn)的這個—— 基于 vue 實現(xiàn)swipe分頁組件 ,移動端和PC端均適用哦。
Result
Usage
一般情況,輪播圖片因為是要經常換的,故在后臺定制,定制內容如下
<div><a href=""><img src=" rel="external nofollow" rel="external nofollow" rel="external nofollow" "/></a></div> <div><a href=""><img src=" rel="external nofollow" rel="external nofollow" rel="external nofollow" "/></a></div> <div><a href=""><img src=" rel="external nofollow" rel="external nofollow" rel="external nofollow" "/></a></div>
沒有定制,必須在代碼里寫的話,也是可以的,造一個data數(shù)組swipeInfo
<!--js--> data:{ swipeInfo:[{ href:"http://www.baidu.com", imgSrc:"" },{ href:"http://www.baidu.com", imgSrc:"" },{ href:"http://www.baidu.com", imgSrc:"" }] }, components: { 'swipe-module': require('pagination-swipe'), },
在html中綁定該數(shù)據(jù)
<!--html--> <swipe-module :swipeinfo="swipeInfo"></swipe-module>
pagination-swipe組件內容
按照swipe構造html框架,添加了pagination塊
<!--template.html--> <div v-el:swipe class='swipe bar-slider'> <div class='swipe-wrap'> <div v-for="item in swipeinfo"><a :href=item.href><img :src=item.imgSrc /></a></div> </div> <!-- 分頁 --> <div class="pagination"> <span class="swipe-pagination-switch swipe-active-switch" @click="slideToCur(0)"></span> <span class="swipe-pagination-switch" @click="slideToCur($index+1)" v-for="item in slideNum"></span> </div> </div>
vue構造組件
//index.js require('./style.less'); var Swipe = require('swipe'); Vue.component('pagination-swipe',{ props: ['swipeinfo'], template: require('raw!./template.html'), data: function() { return { mySwipe: {}, slideNum: {}, }; }, ready: function() { var self = this; //獲取子組件中分頁小圈圈 var slides = self.$els.swipe.getElementsByClassName('swipe-pagination-switch'); self.mySwipe = new Swipe(self.$els.swipe, { startSlide: 0, continuous: true, speed: 1000, auto: 4000, stopPropagation: false, callback: function(index, elem) { //渲染分頁小圈圈 for (var i = 0; i < slides.length; i++) { if (i != index) { slides[i].style.opacity = "0.2"; slides[i].style.background = "#000"; } else { slides[index].style.opacity = "1"; slides[index].style.background = "#ee3a4a"; } } }, }); self.slideNum = self.mySwipe.getNumSlides() - 1; }, methods: { //點擊底部小圈圈,跳到其所對應頁 slideToCur: function(index) { var self = this; self.mySwipe.slide(index, 300); }, } });
<!--style.less--> .swipe { overflow: hidden; visibility: hidden; position: relative; height: 200/@rem; .swipe-wrap { position: relative; overflow: hidden; height: 100%; div { float: left; width: 100%; position: relative; margin: 0; a { width: 100%; height: 100%; background-position: center 0; background-repeat: no-repeat; background-color: transparent; display: block; img { width: 100%; height: 100%; } } } } .pagination { text-align: center; position: relative; bottom: 40/@rem; cursor: pointer; } .swipe-pagination-switch { content: ""; display: inline-block; width: 8px; height: 8px; border-radius: 100%; background: #000; opacity: 0.2; margin: 0 8px; z-index: 10; &:first-child { background: #ee3a4a; } } .swipe-active-switch { opacity: 1; } }
以上是“基于vue如何實現(xiàn)swipe分頁組件”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注創(chuàng)新互聯(lián)網站建設公司行業(yè)資訊頻道!
另外有需要云服務器可以了解下創(chuàng)新互聯(lián)建站jinyejixie.com,海內外云服務器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務器、裸金屬服務器、高防服務器、香港服務器、美國服務器、虛擬主機、免備案服務器”等云主機租用服務以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應用場景需求。
網頁題目:基于vue如何實現(xiàn)swipe分頁組件-創(chuàng)新互聯(lián)
文章URL:http://jinyejixie.com/article20/deojco.html
成都網站建設公司_創(chuàng)新互聯(lián),為您提供全網營銷推廣、響應式網站、品牌網站制作、企業(yè)建站、網站建設、品牌網站建設
聲明:本網站發(fā)布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內容