您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關(guān)微信小程序怎樣實(shí)現(xiàn)拖拽image觸摸事件監(jiān)聽的內(nèi)容。小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過來看看吧。
微信小程序?qū)崿F(xiàn)拖拽 image 觸摸事件監(jiān)聽的實(shí)例
需要做個(gè)浮在scroll-view之上的button.嘗試了一下.
實(shí)現(xiàn)效果圖:
Android中也會(huì)有類似移動(dòng)控件的操作.思路差不多.獲取到位移的X Y 的變量,給控件設(shè)置坐標(biāo).
1.index.wxml
<image class="image-style" src="../../images/gundong.png" bindtap="ballClickEvent" bindtouchmove="ballMoveEvent"> </image>
簡(jiǎn)單的設(shè)置一張圖片,添加觸摸事件監(jiān)聽.點(diǎn)擊事件監(jiān)聽.根據(jù)觸摸事件獲取X Y位移,設(shè)置為image的位置
2.index.js
//index.js //獲取應(yīng)用實(shí)例 var app = getApp() Page({ data: { ballBottom: 240, ballRight: 120, screenHeight: 0, screenWidth: 0, }, onLoad: function () { //獲取屏幕寬高 var _this = this; wx.getSystemInfo({ success: function (res) { _this.setData({ screenHeight: res.windowHeight, screenWidth: res.windowWidth, }); } }); }, ballMoveEvent: function (e) { console.log('我被拖動(dòng)了....') var touchs = e.touches[0]; var pageX = touchs.pageX; var pageY = touchs.pageY; console.log('pageX: ' + pageX) console.log('pageY: ' + pageY) //防止坐標(biāo)越界,view寬高的一般 if (pageX < 30) return; if (pageX > this.data.screenWidth - 30) return; if (this.data.screenHeight - pageY <= 30) return; if (pageY <= 30) return; //這里用right和bottom.所以需要將pageX pageY轉(zhuǎn)換 var x = this.data.screenWidth - pageX - 30; var y = this.data.screenHeight - pageY - 30; console.log('x: ' + x) console.log('y: ' + y) this.setData({ ballBottom: y, ballRight: x }); }, //點(diǎn)擊事件 ballClickEvent: function () { console.log('點(diǎn)擊了....') } })
3.index.wxss
這里需要設(shè)置z-index
.image-style{ position: absolute; bottom: 240px; right: 100px; width: 60px; height: 60px; z-index: 100; }
感謝各位的閱讀!關(guān)于“微信小程序怎樣實(shí)現(xiàn)拖拽image觸摸事件監(jiān)聽”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,讓大家可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。