您好,登錄后才能下訂單哦!
這篇文章主要講解了用vue如何實現手機觸屏滑動功能的代碼示例,內容清晰明了,對此有興趣的小伙伴可以學習一下,相信大家閱讀完之后會有幫助。
功能:iview Carousel 走馬燈,我需要在phone上實現滑動切換功能。
<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端 滑動索引 phone_mouseMX0: 0, // phone端 滑動索引 phone_mouseMX1: 0, // phone端 滑動索引 } }, ... // phone端 滑動開始 phone_mouseS(e){ this.phone_mouseMX0 = e.changedTouches[0].pageX; }, // phone端 滑動結束 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; } } }
看完上述內容,是不是對用vue如何實現手機觸屏滑動功能的代碼示例有進一步的了解,如果還想學習更多內容,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。