我使用Ionic 2开发我的应用程序。我想知道检测touchstart和touchend离子范围旋钮的方法。我将使用该方法在旋钮按下时显示一些元素,并在旋钮未按下时移除元素。 (当你按下旋钮并在每页显示标题时,它就像iBooks或Google Play Book)我如何检测它?
谢谢
答案 0 :(得分:2)
您可以使用touchstart
和touchend
个活动。
<div (touchstart)="touchstart($event)" (touchend)="touchend($event)">
在这里找到了这个想法:https://forum.ionicframework.com/t/button-hold-event/48034/2