小程序元素拖拽
你可以在小程序中使用拖动事件来实现某个元素的拖拽功能。
步骤如下:
示例代码:
<view id="draggable-element" class="draggable-element"> 拖拽我 </view>
Page({ data: { startX: 0, startY: 0, moveX: 0, moveY: 0, }, touchstart(e) { const { pageX, pageY } = e.touches[0] this.setData({ startX: pageX, startY: pageY, moveX: this.data.moveX, moveY: this.data.moveY, }) }, touchmove(e) { const { pageX, pageY } = e.touches[0] const { startX, startY, moveX, moveY } = this.data const offsetX = pageX - startX + moveX const offsetY = pageY - startY + moveY this.setData({ moveX: offsetX, moveY: offsetY, }) }, touchend() { this.setData({ moveX: 0, moveY: 0, }) }, })