如何检测离子范围旋钮上的触摸启动和触摸

时间:2017-03-17 03:25:53

标签: ionic-framework ionic2

我使用Ionic 2开发我的应用程序。我想知道检测touchstart和touchend离子范围旋钮的方法。我将使用该方法在旋钮按下时显示一些元素,并在旋钮未按下时移除元素。 (当你按下旋钮并在每页显示标题时,它就像iBooks或Google Play Book)我如何检测它?

谢谢

1 个答案:

答案 0 :(得分:2)

您可以使用touchstarttouchend个活动。

<div (touchstart)="touchstart($event)" (touchend)="touchend($event)">

在这里找到了这个想法:https://forum.ionicframework.com/t/button-hold-event/48034/2