用vue 實(shí)現(xiàn)手機(jī)觸屏滑動(dòng)功能
更新時(shí)間:2020年05月28日 10:27:46 作者:悠讓
這篇文章主要介紹了用vue 實(shí)現(xiàn)手機(jī)觸屏滑動(dòng)的功能,文中通過示例代碼給大家介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
功能:iview Carousel 走馬燈,我需要在phone上實(shí)現(xiàn)滑動(dòng)切換功能。
<div class="phone" @touchstart="phone_mouseS" @touchend="phone_mouseE"> <Carousel :autoplay-speed="5000" v-model="phone_mouseMIndex" autoplay :value="0" loop v-if="menuChoose == '/'"> <CarouselItem> <img class="img" src="../../static/common/phone_banner_index1.jpg" /> </CarouselItem> <CarouselItem> <img class="img" src="../../static/common/phone_banner_index1.jpg" /> </CarouselItem> <CarouselItem> <img class="img" src="../../static/common/phone_banner_index3.jpg" /> </CarouselItem> </Carousel> </div>
data() {
return {
phone_mouseMIndex: 0, // phone端 滑動(dòng)索引
phone_mouseMX0: 0, // phone端 滑動(dòng)索引
phone_mouseMX1: 0, // phone端 滑動(dòng)索引
}
},
...
// phone端 滑動(dòng)開始
phone_mouseS(e){
this.phone_mouseMX0 = e.changedTouches[0].pageX;
},
// phone端 滑動(dòng)結(jié)束
phone_mouseE(e){
this.phone_mouseMX1 = e.changedTouches[0].pageX;
let tag = this.phone_mouseMX1 - this.phone_mouseMX0;
if(tag >= 50){
if(this.phone_mouseMIndex > 0){
this.phone_mouseMIndex--;
}else{
this.phone_mouseMIndex = 2;
}
}
if(tag <= -50){
if(this.phone_mouseMIndex < 2){
this.phone_mouseMIndex++;
}else{
this.phone_mouseMIndex = 0;
}
}
}
到此這篇關(guān)于用vue 實(shí)現(xiàn)手機(jī)觸屏滑動(dòng)功能的文章就介紹到這了,更多相關(guān)vue 手機(jī)觸屏滑動(dòng)內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
相關(guān)文章
vue setInterval 定時(shí)器失效的解決方式
這篇文章主要介紹了vue setInterval 定時(shí)器失效的解決方式,具有很好的參考價(jià)值,希望對大家有所幫助。一起跟隨小編過來看看吧2020-07-07
vue3使用Pinia的store的組件化開發(fā)模式詳解
這篇文章主要介紹了vue3使用Pinia的store的組件化開發(fā)模式,具有很好的參考價(jià)值,希望對大家有所幫助,如有錯(cuò)誤或未考慮完全的地方,望不吝賜教2025-04-04
Vue/React子組件實(shí)例暴露方法(TypeScript)
最近幾個(gè)月都在用TS開發(fā)各種項(xiàng)目,框架有涉及到Vue3,React18等,記錄一下Vue/React組件暴露出變量/函數(shù)的方法的寫法,對vue?react組件暴露方法相關(guān)知識感興趣的朋友跟隨小編一起看看吧2022-11-11
基礎(chǔ)的前端vite項(xiàng)目創(chuàng)建過程詳解
這篇文章主要介紹了如何使用Vite創(chuàng)建一個(gè)前端項(xiàng)目,并配置了Vue?Router、Vuex、Element?Plus、Axios和Element?Plus圖標(biāo)等第三方依賴,文中通過代碼介紹的非常詳細(xì),需要的朋友可以參考下2024-11-11

