2
我使用Ionic 2開發我的應用程序。我想知道在離子範圍的旋鈕上檢測touchstart和touchend的方法。當旋鈕按下時,我將使用該方法顯示某個元素,並在旋鈕未按下時移除元素。 (當您按下旋鈕並在每頁顯示標題時,它就像iBooks或Google Play Book)我如何檢測它?如何在離子範圍的旋鈕上檢測touchstart和touchend
謝謝
我使用Ionic 2開發我的應用程序。我想知道在離子範圍的旋鈕上檢測touchstart和touchend的方法。當旋鈕按下時,我將使用該方法顯示某個元素,並在旋鈕未按下時移除元素。 (當您按下旋鈕並在每頁顯示標題時,它就像iBooks或Google Play Book)我如何檢測它?如何在離子範圍的旋鈕上檢測touchstart和touchend
謝謝
您可以使用touchstart
和touchend
事件。
<div (touchstart)="touchstart($event)" (touchend)="touchend($event)">
發現這裏的想法:https://forum.ionicframework.com/t/button-hold-event/48034/2