documen.addEventListener("drag",function (e) {
console.log(e.detail.move.x+":"+e.detail.move.y);
});
通过上面的代码得到的好像不是像素单位,怎样可以转化为像素单位呢?
documen.addEventListener("drag",function (e) {
console.log(e.detail.move.x+":"+e.detail.move.y);
});
通过上面的代码得到的好像不是像素单位,怎样可以转化为像素单位呢?
Hinsteny (作者)
嗯,是的呢,不过麻烦请问下怎么得到相对于窗口的坐标呢?谢谢
2015-03-04 15:18
DCloud_UNI_FXY
event.touches[0].clientX,event.touches[0].clientY
2015-03-04 15:32