2019-08-02

image.png

html 代码

使用鼠标拖动我

JS代码

Page({
  data:{
    left:'',
    top:''
  },
  viewTouchMove:function(e){
    this.setData({
      left:e.touches[0].clientX-60,
      top:e.touches[0].clientY-60
    })
  }
})

你可能感兴趣的:(2019-08-02)