小編給大家分享一下如何使用vue中實(shí)現(xiàn)翻頁(yè)組件vue-flip-page效果,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
創(chuàng)新互聯(lián)服務(wù)項(xiàng)目包括漠河網(wǎng)站建設(shè)、漠河網(wǎng)站制作、漠河網(wǎng)頁(yè)制作以及漠河網(wǎng)絡(luò)營(yíng)銷(xiāo)策劃等。多年來(lái),我們專(zhuān)注于互聯(lián)網(wǎng)行業(yè),利用自身積累的技術(shù)優(yōu)勢(shì)、行業(yè)經(jīng)驗(yàn)、深度合作伙伴關(guān)系等,向廣大中小型企業(yè)、政府機(jī)構(gòu)等提供互聯(lián)網(wǎng)行業(yè)的解決方案,漠河網(wǎng)站推廣取得了明顯的社會(huì)效益與經(jīng)濟(jì)效益。目前,我們服務(wù)的客戶(hù)以成都為中心已經(jīng)輻射到漠河省份的部分城市,未來(lái)相信會(huì)繼續(xù)擴(kuò)大服務(wù)區(qū)域并繼續(xù)獲得客戶(hù)的支持與信任!
方法
change (改變頁(yè)面)
tap (點(diǎn)擊)
turning (正在翻頁(yè))
prev (前一頁(yè))
next (后一頁(yè))
翻到指定頁(yè)面:
handleSwitchManual(index) { if (index === this.currentIndex) return; this.$refs["turn"].toPage(index); this.currentIndex = index; this.goods_id = this.manuals[this.currentIndex].goods_id; this.show = false; },
傳入?yún)?shù):
| 參數(shù) | type | example | describe | | ------ | ---- | -------- | ---------- | | width | number | 375 | 寬度 | | height | number | 667 | 高度 | | data | Array | [ { "picture_image": "https://ss0.bdstatic.com/70cFvHSh_Q1YnxGkpoWK1HF6hhy/it/u=2600216442,2384386498&fm=15&gp=0.jpg", }, { "picture_image": "https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1580807703833&di=0ab054549c3ea050dc0bd49e146b20e9&imgtype=0&src=http%3A%2F%2Fwww.thatsmags.com%2Fimage%2Fview%2F201703%2Fvue-cover.jpg", }] | 傳入的數(shù)據(jù) | npm包 npm install vue-flip-page
在需要用到的頁(yè)面中(注意 一個(gè)頁(yè)面目前只能引入一次)
import turn from "vue-flip-page"; components: { turn }
例子:
效果:
樣式:
.manual-wrap { position: relative; z-index: 0; width: 100%; height: 100%; opacity: 0; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-transform: scale(0.95); transform: scale(0.95); -webkit-transition: opacity ease 0.5s; transition: opacity ease 0.5s; -moz-user-select: none; -webkit-user-select: none; -ms-user-select: none; user-select: none; -o-user-select: none; } .manual-wrap.active { -webkit-transform: scale(1); transform: scale(1); opacity: 1; }
以上是“如何使用vue中實(shí)現(xiàn)翻頁(yè)組件vue-flip-page效果”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!