真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

vue如何實現(xiàn)ios原生picker效果

這篇文章將為大家詳細講解有關(guān)vue如何實現(xiàn)ios原生picker效果,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

滿洲網(wǎng)站制作公司哪家好,找成都創(chuàng)新互聯(lián)公司!從網(wǎng)頁設(shè)計、網(wǎng)站建設(shè)、微信開發(fā)、APP開發(fā)、響應(yīng)式網(wǎng)站設(shè)計等網(wǎng)站項目制作,到程序開發(fā),運營維護。成都創(chuàng)新互聯(lián)公司于2013年開始到現(xiàn)在10年的時間,我們擁有了豐富的建站經(jīng)驗和運維經(jīng)驗,來保證我們的工作的順利進行。專注于網(wǎng)站建設(shè)就選成都創(chuàng)新互聯(lián)公司

以前最早實現(xiàn)了一個類似的時間選擇插件,但是適用范圍太窄,索性最近要把這個實現(xiàn)方式發(fā)布出來,就重寫了一個高復(fù)用的vue組件。

支持安卓4.0以上,safari 7以上

vue如何實現(xiàn)ios原生picker效果

效果預(yù)覽

gitHub

滾輪部分主要dom結(jié)構(gòu)


 
  
      1          1     
props props: {    data: {     type: Array,     required: true    },    type: {     type: String,     default: 'cycle'    },    value: {}   }

設(shè)置css樣式 使其垂直居中

.pd-select-line, .pd-select-list, .pd-select-wheel {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.pd-select-list {
  overflow: hidden;
}

滾輪3d樣式設(shè)置

/* 滾輪盒子 */
.pd-select-wheel {
  transform-style: preserve-3d;
  height: 30px;
}
/* 滾輪單項 */
.pd-select-wheel-item {
  white-space: nowrap;
  text-overflow: ellipsis;
  backface-visibility: hidden;
  position: absolute;
  top: 0px;
  width: 100%;
  overflow: hidden;
}

vue如何實現(xiàn)ios原生picker效果

主要注意2個屬性 transform-style: preserve-3d; backface-visibility: hidden;

第一個是3d布局,讓界面3D化,第二個是讓滾輪背后自動隱藏(上圖紅色部分,背面的dom節(jié)點 會自動隱藏)

如何實現(xiàn)3D 滾輪

盒子主要這句css transform: rotate3d(1, 0, 0, x deg);

item主要運用這句css transform: rotate3d(1, 0, 0, xdeg) translate3d(0px, 0px, [x]px);

vue如何實現(xiàn)ios原生picker效果

vue如何實現(xiàn)ios原生picker效果
vue如何實現(xiàn)ios原生picker效果

上面2張圖展示了translate3d(0px, 0px, [x]px);這句話的效果 [x]就是圓的半徑

vue如何實現(xiàn)ios原生picker效果

從上面的圖可以看見,我們只需旋轉(zhuǎn)每個dom自身,然后利用translate3d(0px, 0px, [x]px);把每個dom擴展開

就形成了圓環(huán).α就是每個dom自身旋轉(zhuǎn)的角度,因為這里只用了0到180°,所以用了個盒子在裝這些dom

行高 和角度計算

vue如何實現(xiàn)ios原生picker效果

已知兩邊和夾角 算第三邊長度 ~=34px

http://tool.520101.com/calculator/sanjiaoxingjiaodu/

無限滾輪實現(xiàn)

/* 滾輪展示大小限定 */
spin: {start: 0, end: 9, branch: 9}
 
/* 獲取spin 數(shù)據(jù) */
 getSpinData (index) {
  index = index % this.listData.length
  return this.listData[index >= 0 ? index : index + this.listData.length]
 }
 /* 模運算 獲取數(shù)組有的索引 這樣就構(gòu)成 圓環(huán)了 */

touchend做特殊處理

在touchend 里設(shè)置setCSS類型 把滾動數(shù)據(jù)取整,這樣停止的時候就是

一格一格的準(zhǔn)確轉(zhuǎn)動到位

// other code ....
/* 計算touchEnd移動的整數(shù)距離 */
    let endMove = margin
    let endDeg = Math.round(updateDeg / deg) * deg
    if (type === 'end') {
     this.setListTransform(endMove, margin)
     this.setWheelDeg(endDeg)
    } else {
     this.setListTransform(updateMove, margin)
     this.setWheelDeg(updateDeg)
    }
 // other code ....
慣性緩動
// other code ....
setWheelDeg (updateDeg, type, time = 1000) {
    if (type === 'end') {
     this.$refs.wheel.style.webkitTransition = `transform ${time}ms cubic-bezier(0.19, 1, 0.22, 1)`
     this.$refs.wheel.style.webkitTransform = `rotate3d(1, 0, 0, ${updateDeg}deg)`
    } else {
     this.$refs.wheel.style.webkitTransition = ''
     this.$refs.wheel.style.webkitTransform = `rotate3d(1, 0, 0, ${updateDeg}deg)`
    }
   }
setListTransform (translateY = 0, marginTop = 0, type, time = 1000) {
    if (type === 'end') {
     this.$refs.list.style.webkitTransition = `transform ${time}ms cubic-bezier(0.19, 1, 0.22, 1)`
     this.$refs.list.style.webkitTransform = `translateY(${translateY - this.spin.branch * 34}px)`
     this.$refs.list.style.marginTop = `${-marginTop}px`
     this.$refs.list.setAttribute('scroll', translateY)
     console.log('end')
    } else {
     this.$refs.list.style.webkitTransition = ''
     this.$refs.list.style.webkitTransform = `translateY(${translateY - this.spin.branch * 34}px)`
     this.$refs.list.style.marginTop = `${-marginTop}px`
     this.$refs.list.setAttribute('scroll', translateY)
    }
}
// other code ....

獲取當(dāng)前選中值

/* 在設(shè)置完css后獲取值 */
setStyle (move, type, time) {
  // ...other code
  /* 設(shè)置$emit 延遲 */
  setTimeout(() => this.getPickValue(endMove), 1000)
 // ...other code
}
/* 獲取選中值 */
   getPickValue (move) {
    let index = Math.abs(move / 34)
    let pickValue = this.getSpinData(index)
    this.$emit('input', pickValue)
   }

初始化設(shè)置

mounted () {
   /* 事件綁定 */
   this.$el.addEventListener('touchstart', this.itemTouchStart)
   this.$el.addEventListener('touchmove', this.itemTouchMove)
   this.$el.addEventListener('touchend', this.itemTouchEnd)
   /* 初始化狀態(tài) */
   let index = this.listData.indexOf(this.value)
   if (index === -1) {
    console.warn('當(dāng)前初始值不存在,請檢查后listData范圍??!')
    this.setListTransform()
    this.getPickValue(0)
   } else {
    let move = index * 34
    /* 因為往上滑動所以是負 */
    this.setStyle(-move)
    this.setListTransform(-move, -move)
   }

當(dāng)展示為非無限滾輪的時

這里我們很好判斷,就是滾動的距離不能超過原始數(shù)的數(shù)組長度*34,且不能小于0(實際代碼中涉及方向)

/* 根據(jù)滾輪類型 line or cycle 判斷 updateMove最大距離 */
    if (this.type === 'line') {
     if (updateMove > 0) {
      updateMove = 0
     }
     if (updateMove < -(this.listData.length - 1) * singleHeight) {
      updateMove = -(this.listData.length - 1) * singleHeight
     }
    }
 /* 根據(jù)type 控制滾輪顯示效果 */
   setHidden (index) {
    if (this.type === 'line') {
     return index < 0 || index > this.listData.length - 1
    } else {
     return false
    }
   },

dom結(jié)構(gòu)也增加了對應(yīng)的響應(yīng)


  
           {{el.value}}              {{el.value}}     

Vue的優(yōu)點

Vue具體輕量級框架、簡單易學(xué)、雙向數(shù)據(jù)綁定、組件化、數(shù)據(jù)和結(jié)構(gòu)的分離、虛擬DOM、運行速度快等優(yōu)勢,Vue中頁面使用的是局部刷新,不用每次跳轉(zhuǎn)頁面都要請求所有數(shù)據(jù)和dom,可以大大提升訪問速度和用戶體驗。

關(guān)于“vue如何實現(xiàn)ios原生picker效果”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,使各位可以學(xué)到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。


名稱欄目:vue如何實現(xiàn)ios原生picker效果
本文鏈接:http://weahome.cn/article/gdopjd.html

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部