30秒学会 Angular 片段 – hammerjs-gestures
To act upon swipes, pans, and pinhces as well as the other mobile gestures, you can use hammerjs
with HostListener
decorator, or an event binding,
npm install hammerjs
@HostListener('swiperight')
public swiperight(): void {
// Run code when a user swipes to the right
}
继续阅读 30秒学会 Angular 片段 – hammerjs-gestures