替代javascript事件中的“touchmove”

时间:2015-11-04 12:55:31

标签: javascript android ios ionic

在javascript事件中替换touchmove。 使用touchmove后,我会收到如下警告。

'Touch.webkitRadiusX' is deprecated and will be removed in M47, around November 2015. Please use 'Touch.radiusX' instead.
ionic.js:1155 'Touch.webkitRadiusY' is deprecated and will be removed in M47, around November 2015. Please use 'Touch.radiusY' instead.
ionic.js:1155 'Touch.webkitRotationAngle' is deprecated and will be removed in M47, around November 2015. Please use 'Touch.rotationAngle' instead.
ionic.js:1155 'Touch.webkitForce' is deprecated and will be removed in M47, around November 2015. Please use 'Touch.force' instead.

请帮助。

1 个答案:

答案 0 :(得分:0)

您可以使用内置的Ionic Gesture来跟踪各种触摸事件,例如:holdtapdoubletapdragdragstart,{ {1}},dragenddragupdragdowndragleftdragrightswipeswipeup,{{1 }},swipedownswipeleftswiperighttransformtransformstarttransformendrotatepinchpinchinpinchout

在您的情况下,我认为touch可以替换为release事件。此事件会为您返回x,y。

这是使用方法:

在您的控制器中:注入touchmove依赖项。

drag

Ionic Docs Site

的更多详情