項(xiàng)目中使用的vue,剛好有需求要實(shí)現(xiàn)輪播圖,突出顯示當(dāng)前圖片,兩邊展示其他圖片;通過查各種資料,實(shí)現(xiàn)了,故在此記錄下來
我們提供的服務(wù)有:成都網(wǎng)站建設(shè)、網(wǎng)站建設(shè)、微信公眾號(hào)開發(fā)、網(wǎng)站優(yōu)化、網(wǎng)站認(rèn)證、漯河ssl等。為數(shù)千家企事業(yè)單位解決了網(wǎng)站和推廣的問題。提供周到的售前咨詢和貼心的售后服務(wù),是有科學(xué)管理、有技術(shù)的漯河網(wǎng)站制作公司
下面我們來看下實(shí)現(xiàn)步驟:
<div class="swiper-container"> <div class="swiper-wrapper"> <div v-for="(item, i) in pictures" :key="i" class="swiper-slide" > <!-- 具體內(nèi)容 --> <img :src="item.advertiseImages" alt="商品圖片" > </div> </div> </div>
第三步:在項(xiàng)目中使用npm安裝swiper模塊
npm install swiper --save-dev
JS中文網(wǎng) - 前端進(jìn)階資源教程www.javascriptC.com 一個(gè)致力于幫助開發(fā)者用代碼改變世界為使命的平臺(tái),每天都可以在這里找到技術(shù)世界的頭條內(nèi)容
第四步:在vue文件中引入,并初始化swiper; 先引入swiper
import Swiper from "swiper";
注意初始化需要放入mounted鉤子中哦
import Swiper from "swiper"; export default { data() { return { } }, mounted() { var mySwiper = new Swiper(".swiper-container", { direction: "horizontal", loop: false, slidesPerView: "auto", centeredSlides: true, spaceBetween: 20, observer: true, observeParents: true }); } }
如果你的項(xiàng)目中,圖片是從后臺(tái)接口獲取,那么上面的初始化可能會(huì)出問題,這個(gè)時(shí)候我們采取另外的方式初始化swiper
import Swiper from "swiper"; export default { data() { return { mySwiper: null } }, methods: { getdata() { promise.then(res => { this.pictures = res.images || []; this.$nextTick(() => { this.initSwiper(); }); }); }, initSwiper() { this.mySwiper = new Swiper(".swiper-container", { direction: "horizontal", loop: false, slidesPerView: "auto", centeredSlides: true, spaceBetween: 20, observer: true, observeParents: true }); } } }
把swiper的初始化放入vue的nextTick中執(zhí)行,就解決掉問題啦
第五步:如果想獲取當(dāng)前滾動(dòng)到哪一張圖片怎么辦呢
this.mySwiper.activeIndex;
使用activeIndex屬性就可以獲取到當(dāng)前圖片的索引啦。 那么我們這個(gè)功能就完成啦
總結(jié)
以上所述是小編給大家介紹的vue使用swiper實(shí)現(xiàn)中間大兩邊小的輪播圖效果,希望對(duì)大家有所幫助,如果大家有任何疑問歡迎給我留言,小編會(huì)及時(shí)回復(fù)大家的!
網(wǎng)站欄目:vue使用swiper實(shí)現(xiàn)中間大兩邊小的輪播圖效果
本文地址:http://jinyejixie.com/article42/poseec.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供全網(wǎng)營(yíng)銷推廣、App設(shè)計(jì)、做網(wǎng)站、小程序開發(fā)、網(wǎng)站維護(hù)、虛擬主機(jī)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)