91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

使用vue怎么開發一個下拉刷新組件

發布時間:2020-12-23 14:10:00 來源:億速云 閱讀:161 作者:Leah 欄目:開發技術

這篇文章給大家介紹使用vue怎么開發一個下拉刷新組件,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

“下拉刷新”和“上滑加載更多”功能在前端、尤其是移動端項目中非常重要,這里筆者由曾經做過的vue項目中的“blink”功能和各位探討下【下拉刷新】組件的開發:

正式開篇

在前端項目的 components 文件夾下新建 pullRefreshView 文件夾,在其中新建組件 index.vue:(它代表“整個屏幕”,通過slot插入頁面其他內容而不是傳統的設置遮罩層觸發下拉刷新)

首先需要編寫下拉刷新組件的 template,這里用到 <slot>,代碼如下:

<template>
	<div class="pullRefreshView" @touchmove="touchmove" @touchstart="touchstart" @touchend="touchend">
		<div ref="circleIcon" class="circle-icon">
			<div ref="circleIconInner" class="circle-icon-inner"></div>
		</div>
		<slot></slot>
	</div>
</template>

上面代碼中,最外層使用了一個 div 用來包裹,作為事件綁定的容器,同時新建一個圓形 icon 的 div .circleIcon,我們將此 icon 樣式設置在屏幕外,達到隱藏的效果,代碼如下:

<style>
	.circle-icon{
		position: absolute;
		left: 0.625rem;
		top: -1.875rem;
	}
	.circle-icon-inner{
		width: 1.5625rem;
		height: 1.5625rem;
		background-image: url('圓圈圖片地址');
		background-size: cover;
	}
	.circle-rotate{
		animation: xuzhuan .8s linear infinite;
	}
	@keyframes xuzhuan{
		0%{}
		25%{}
		50%{}
		75%{}
		100%{}
	}
</style>

下拉刷新組件的 UI 基本編寫完畢,接下來就要綁定事件了,通過上述分析,加上我們之前章節開發圖片查看器的原理,我們需要用到移動端 touchstart,touchmove,touchend 事件,可以實現下拉刷新效果。

首先,監聽 touchstart 事件:

touchstart(evt){
	this.pullRefresh.dragStart=evt.targetTouches[0].clientY
	this.$refs.circleIcon.style.webkitTransition='none'
},

在 touchstart 事件中,我們主要做的是記錄一些初始值,包括手指第一次接觸屏幕時的位置,然后將圓形 icon 的動畫效果先隱藏。

然后,監聽 touchmove 事件:

touchmove(evt){
	if(this.pullRefresh.dragStart===null){
		return
	}
	let target=evt.targetTouches[0]
	// 向上滑為正,向下拉為負
	this.pullRefresh.percentage=(this.pullRefresh.dragStart-target.clientY)/window.screen.height
	let scrollTop=document.documentElement.scrollTop || document.body.scrollTop
	if(scrollTop===0){
		//this.pullRefresh指data中的pullRefresh對象(下方有),而evt即事件event參數
		if(this.pullRefresh.percentage<0 && evt.cancelable){
			evt.preventDefault()
			this.pullRefresh.joinRefreshFlag=true
			let translateY=-this.pullRefresh.percentage*this.pullRefresh.moveCount
			if(Math.abs(this.pullRefresh.percentage)<=this.pullRefresh.dragThreshold){
				let rotate=translateY/30*360
				this.$refs.circleIcon.style.webkitTransform='translate3d(0'+translateY+'px,0) rotate('+rotate+'deg)'
			}
		}else{
			if(this.pullRefresh.joinRefreshFlag===null){
				this.pullRefresh.joinRefreshFlag=false
			}
		}
	}else{
		if(this.pullRefresh.joinRefreshFlag===null){
			this.pullRefresh.joinRefreshFlag=false
		}
	}
},

在 touchmove 事件里,我們主要做的是根據手指移動的量來實時將圓形 icon 移動并旋轉,這里有幾點確實要說明一下:

  • 我們的下拉刷新觸發的時機是在頁面處于屏幕頂部并且手指向下拖動,這兩個條件,缺一不可,在代碼中,我們利用 scrollTop == 0this.pullRefresh.percentage < 0 來判斷。

  • 在進入下拉刷新狀態時,此時手指不斷向下拖動,首先圓形 icon.circleIcon 會向下滾動并旋轉,當滾動到臨界值時就只原地旋轉。

  • 如果手指在向上拖動,圓形 icon.circleIcon 就會向上滾動并旋轉。

  • 直到手指離開屏幕前,都不會觸發下拉刷新,只是圓形 icon.circleIcon 在不停的上下移動。

監聽 touchend 事件:

touchend(evt){
	if(this.pullRefresh.percentage===0){
		return
	}
	if(Math.abs(this.pullRefresh.percentage)>this.pullRefresh.dragThreshold && this.pullRefresh.joinRefreshFlag){
		this.$emit('onRefresh')
		this.$refs.circleIconInner.classList.add('circle-rotate')
		setTimeout(()=>{
			this.$refs.circleIconInner.classList.remove('circle-rotate')
			this.$refs.circleIcon.style.webkitTransition='330ms'
			this.$refs.circleIcon.style.webkitTransform='translate3d(0,0,0) rotate(0deg)'
		},700)
	}else{
		if(this.pullRefresh.joinRefreshFlag){
			this.$refs.circleIcon.style.webkitTransition='330ms'
			this.$refs.circleIcon.style.webkitTransform='translate3d(0,0,0) rotate(0deg)'
		}
	}
	this.pullRefresh.joinRefreshFlag=null
	this.pullRefresh.dragStart=null
	this.pullRefresh.percentage=0
}

在 touchend 事件中,我們主要是做一些動畫執行的操作,大家可以看看代碼中的注釋,這里說明一下:

  1. 此時手指離開屏幕,位移量達到臨界值時,并且也有進入下拉刷新的標志位,就表明要觸發正在刷新。此時圓形 icon原地旋轉,并觸發下拉刷新回調方法,延遲 700ms 后向上收起。

  2. 我們在實現圓形 icon 時的旋轉和位移動畫時,用了兩個 div,在 touchmove 時,我們主要對外層的 div 也就是 ref=circleIcon,來實現位移和旋轉。

  3. 在 touchend 時,我們主要給內層的 div 也就是 ref=circleIconInner 來加 animation 動畫,因為無法給一個 div 同時使用位移旋轉和 animation 動畫,所以這里一個技巧就是給父元素設置位移和旋轉,它的子元素在不設置任何 CSS 動畫樣式時,是會隨著父元素而生效的。

最后,我們看下【data】中都有什么:

data(){
	return{
		pullRefresh:{
			dragStart:null, //開始抓取標志位
			percentage:0, //拖動量(百分比)
			dragThreshold:0.3, //臨界值
			moveCount:200, //位移系數,可以調節圓形圖片icon的運動速率
			joinRefreshFlag:null, //進入刷新狀態的標志位(true)
		}
	}
},

補充:slot

<template>中為什么有<slot>

slot有三種形式:

  1. 普通插槽

  2. 具名插槽

  3. 作用域插槽

可能我們一般用具名slot的時候比較多,但是第一種也格外好用——正因為它沒有名字,所以引用這個組件的另一個組件中包裹其中的所有內容都歸這個slot所有:

假定my-component組件中有如下模板:

<div>
	<h3>我是子組件</h3>
	<slot>只有在沒有內容分發的情況下這句話才會出現</slot>
</div>

父組件模板:

<div>
	<h2>這是父組件地盤</h2>
	<my-component>
		<p>這是一些初始內容</p>
		<p>這是更多的內容</p>
	</my-component>
</div>

最后就會被渲染成這樣:

<div> 
	<h2>這是父組件地盤</h2>
	<div> 
		<h3>我是子組件</h3>
		<p>這是一些初始內容</p>
		<p>這是更多的內容</p>
	</div> 
</div>

所以這里這樣做,就是為了在“父組件”中調用時讓“下拉的動畫”更自然,但又不會增加一個文件的負擔。

關于使用vue怎么開發一個下拉刷新組件就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

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

AI

衡东县| 栾城县| 临沧市| 上杭县| 广饶县| 龙泉市| 阜新市| 沧州市| 于田县| 绥宁县| 山西省| 安塞县| 林甸县| 山东| 岳阳市| 图片| 屯留县| 江陵县| 白沙| 乌海市| 黄梅县| 安康市| 灵璧县| 桑植县| 锦屏县| 黔西| 台东县| 沿河| 斗六市| 图木舒克市| 洪洞县| 通化县| 镶黄旗| 霍州市| 永昌县| 吴忠市| 云梦县| 绥棱县| 永顺县| 阿巴嘎旗| 达州市|