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

溫馨提示×

溫馨提示×

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

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

小程序之拖拽image觸摸事件監聽的示例分析

發布時間:2021-01-28 11:17:58 來源:億速云 閱讀:250 作者:小新 欄目:移動開發

這篇文章主要介紹小程序之拖拽image觸摸事件監聽的示例分析,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

微信小程序實現拖拽 image 觸摸事件監聽的實例

需要做個浮在scroll-view之上的button.嘗試了一下.

實現效果圖:

小程序之拖拽image觸摸事件監聽的示例分析

Android中也會有類似移動控件的操作.思路差不多.獲取到位移的X Y 的變量,給控件設置坐標.

1.index.wxml

<image class="image-style" src="../../images/gundong.png" bindtap="ballClickEvent" style="bottom:{{ballBottom}}px;right:{{ballRight}}px;" bindtouchmove="ballMoveEvent">  
</image>

簡單的設置一張圖片,添加觸摸事件監聽.點擊事件監聽.根據觸摸事件獲取X Y位移,設置為image的位置

2.index.js

//index.js 
//獲取應用實例 
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('我被拖動了....') 
  var touchs = e.touches[0]; 
  var pageX = touchs.pageX; 
  var pageY = touchs.pageY; 
  console.log('pageX: ' + pageX) 
  console.log('pageY: ' + pageY) 

//防止坐標越界,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轉換 
  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 
  }); 
 }, 

//點擊事件 
 ballClickEvent: function () { 
  console.log('點擊了....') 
 } 
})

3.index.wxss

這里需要設置z-index

.image-style{ 
 position: absolute; 
 bottom: 240px; 
 right: 100px; 
 width: 60px; 
 height: 60px; 
 z-index: 100; 
}

以上是“小程序之拖拽image觸摸事件監聽的示例分析”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

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

AI

从江县| 华亭县| 纳雍县| 孝昌县| 固始县| 滨海县| 崇明县| 故城县| 闵行区| 玛沁县| 东阿县| 通辽市| 会泽县| 延吉市| 城固县| 县级市| 贺兰县| 阳春市| 若尔盖县| 调兵山市| 乐都县| 鸡西市| 宁德市| 山丹县| 子长县| 和龙市| 高密市| 马关县| 盐源县| 蓬莱市| 仙游县| 原平市| 翼城县| 宁强县| 临海市| 大同市| 东乌| 贵阳市| 祁阳县| 四子王旗| 汝阳县|