亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

vue如何實現滑動切換效果

發布時間:2021-04-02 11:02:01 來源:億速云 閱讀:669 作者:小新 欄目:web開發

這篇文章將為大家詳細講解有關vue如何實現滑動切換效果,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

vue實現滑動時紅黃色塊左右滑動相應距離,效果如下圖

vue如何實現滑動切換效果

實現過程主要在于實時跟蹤手指滑動位置與原位置之間的偏移量,再相應移動紅黃塊。

紅黃塊布局如下

back中包含back-l,back-r左右兩塊,正常情況下為了隱藏其中一塊,子模塊需要設置display: inline-block,并且寬度都需要設置width: 100%。父模塊中設置white-space: nowrap用于處理兩個子模塊之間的空白。

<template lang="html">
 <div class="back"
 @touchstart.prevent="touchStart"
 @touchmove.prevent="touchMove"
 @touchend="touchEnd" ref="back">
  <div class="back-l" ref="left"></div>
  <div class="back-r" ref="right"></div>
 </div>
</template>
 
<style scoped lang="stylus" rel="stylesheet/stylus">
.back
 position: fixed
 width: 100%
 height: 100px
 white-space: nowrap
 .back-l
  position: relative
  vertical-align: top
  display: inline-block
  width: 100%
  height: 100%
  background-color: red
 .back-r
  display: inline-block
  vertical-align: top
  position: relative
  width: 100%
  height: 100%
  background-color: yellow
</style>

父模塊監聽滑動事件

滑動事件分為三種:touchstart,touchmove,touchEnd,加上prevent避免頁面相應滑動。

在touchstart中記錄滑動開始點:

touchStart(e) {
   const touch = e.touches[0]
   this.touch.startX = touch.pageX
   this.touch.startY = touch.pageY
  }

touchmove中為滑動過程,手指未離開頁面,離開頁面時觸發touchend。滑動過程中,當橫向偏離位置大于縱向偏離位置時認為滑動有效,記錄手指偏離位置,相應移動紅黃塊。

touchMove(e) {
   console.log("move");
   const touch = e.touches[0]
   //橫向和縱向偏離位置
   const deltaX = touch.pageX - this.touch.startX
   const deltaY = touch.pageY - this.touch.startY
   if (Math.abs(deltaY) > Math.abs(deltaX)) {
    return
   }
   const left = this.currentPlay == 'red' ? 0 : -window.innerWidth
   var offsetWidth = Math.min(0, Math.max(-window.innerWidth,left+deltaX))
   //記錄滑動的距離占屏幕寬度的百分比,如果滑動太少則不切換
   this.percent = Math.abs(offsetWidth/window.innerWidth)
   //移動紅黃塊   
   this.$refs.back.style["transform"] = `translate3d(${offsetWidth}px,0,0)`
   //設置動畫時間   
   this.$refs.back.style["transitionDuration"] = 10
  }

計算偏移量時首先需要知道當前偏移位置,如果當前在紅塊,初始偏移量為0,否則初始偏移量為負的屏幕寬度。初始偏移量加上橫向偏移量首先和-window.innerWidth取最大值,-window.innerWidth為最左偏移量。再和0相比較取最小值,偏移量為0或者大于零則不再(向右移動)移動,小于零則可以向左移動。

touchend中處理最終效果,如果滑動距離不大于某一值則恢復原位,否則切換。

touchEnd() {
 console.log("end");
 console.log(this.percent);
 let offsetWidth
 let percent
 //當前為紅色,滑動占比大于0.1則切換,否則回到原位置
 if(this.currentPlay === 'red'){
  if(this.percent > 0.1) {
   this.currentPlay = 'yellow'
   offsetWidth = -window.innerWidth
  } else {
   offsetWidth = 0
  }
 } else {
 //當前為黃色,滑動占比大于0.9則切換,否則回到原位置
  if(this.percent < 0.9) {
   this.currentPlay = 'red'
   offsetWidth = 0
  } else {
   offsetWidth = -window.innerWidth
  }
 }
 //這里的transform是針對最開始的位置而言,而不是移動過程中的位置
 this.$refs.back.style["transform"] = `translate3d(${offsetWidth}px,0,0)`
 this.$refs.back.style["transitionDuration"] = 10
}

完整代碼

<template lang="html">
 <div class="back"
 @touchstart.prevent="touchStart" @touchmove.prevent="touchMove"
 @touchend="touchEnd" ref="back">
  <div class="back-l" ref="left"></div>
  <div class="back-r" ref="right"></div>
 
 </div>
</template>
 
<script>
export default {
 data() {
  return {
   currentPlay: 'red',
   percent: 0
  }
 },
 created() {
  this.touch = {}
 },
 methods: {
  touchStart(e) {
   const touch = e.touches[0]
   this.touch.startX = touch.pageX
   this.touch.startY = touch.pageY
  },
  touchMove(e) {
   console.log("move");
   const touch = e.touches[0]
   const deltaX = touch.pageX - this.touch.startX
   const deltaY = touch.pageY - this.touch.startY
   if (Math.abs(deltaY) > Math.abs(deltaX)) {
    return
   }
   const left = this.currentPlay == 'red' ? 0 : -window.innerWidth
   var offsetWidth = Math.min(0, Math.max(-window.innerWidth,left+deltaX))
   this.percent = Math.abs(offsetWidth/window.innerWidth)
   this.$refs.back.style["transform"] = `translate3d(${offsetWidth}px,0,0)`
   this.$refs.back.style["transitionDuration"] = 10
 
 
 
  },
  touchEnd() {
   console.log("end");
   console.log(this.percent);
   let offsetWidth
   let percent
   if(this.currentPlay === 'red'){
    if(this.percent > 0.1) {
     this.currentPlay = 'yellow'
     offsetWidth = -window.innerWidth
    } else {
     offsetWidth = 0
    }
   } else {
    if(this.percent < 0.9) {
     this.currentPlay = 'red'
     offsetWidth = 0
    } else {
     offsetWidth = -window.innerWidth
    }
   }
   this.$refs.back.style["transform"] = `translate3d(${offsetWidth}px,0,0)`
   this.$refs.back.style["transitionDuration"] = 10
  }
 }
}
</script>
 
<style scoped lang="stylus" rel="stylesheet/stylus">
.back
 position: fixed
 width: 100%
 height: 100px
 white-space: nowrap
 .back-l
  position: relative
  vertical-align: top
  display: inline-block
  width: 100%
  height: 100%
  background-color: red
 .back-r
  display: inline-block
  vertical-align: top
  position: relative
  width: 100%
  height: 100%
  background-color: yellow
 
 
</style>

關于“vue如何實現滑動切換效果”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

vue
AI

顺平县| 青阳县| 进贤县| 凯里市| 民权县| 栾城县| 楚雄市| 天门市| 武陟县| 凤阳县| 康保县| 沙雅县| 长岛县| 阳曲县| 邵东县| 嘉兴市| 蒙自县| 武城县| 嵩明县| 福鼎市| 积石山| 山东省| 从江县| 武邑县| 福建省| 罗田县| 南宁市| 鹤山市| 保靖县| 蓝山县| 余庆县| 湘潭县| 准格尔旗| 兴隆县| 岳普湖县| 白山市| 汽车| 大石桥市| 兴和县| 盈江县| 青冈县|