您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關微信小程序如何實現頁面滑動事件的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
微信小程序——頁面滑動事件
wxml:
<view id="id" class = "ball" bindtap = "handletap" bindtouchstart = "handletouchtart" bindtouchmove="handletouchmove" bindtouchend="handletouchend" style = "width : 100%px; height : 40px;"> {{text}} </view>
wxss:
.ball { box-shadow:2px 2px 10px #AAA; border-radius: 20px; position: absolute; }
js:
//js Page({ data: { lastX: 0, //滑動開始x軸位置 lastY: 0, //滑動開始y軸位置 text: "沒有滑動", currentGesture: 0, //標識手勢 }, //滑動移動事件 handletouchmove: function (event) { var currentX = event.touches[0].pageX var currentY = event.touches[0].pageY var tx = currentX - this.data.lastX var ty = currentY - this.data.lastY var text = "" //左右方向滑動 if (Math.abs(tx) > Math.abs(ty)) { if (tx < 0) text = "向左滑動" else if (tx > 0) text = "向右滑動" } //上下方向滑動 else { if (ty < 0) text = "向上滑動" else if (ty > 0) text = "向下滑動" } //將當前坐標進行保存以進行下一次計算 this.data.lastX = currentX this.data.lastY = currentY this.setData({ text: text, }); }, //滑動開始事件 handletouchtart: function (event) { this.data.lastX = event.touches[0].pageX this.data.lastY = event.touches[0].pageY }, //滑動結束事件 handletouchend: function (event) { this.data.currentGesture = 0; this.setData({ text: "沒有滑動", }); }, })
感謝各位的閱讀!關于“微信小程序如何實現頁面滑動事件”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。