Let me start by outlining my objective. I have a hybrid app, but the swipe action on it doesn't quite give off the same feel as a native app. In native apps, when you swipe between tabs, you can see a smooth transition where the current tab slides out and the new tab slides in. It's not a sudden change; instead, if you don't lift your finger, you can be in a state where you see half of one tab and half of another (similar to WhatsApp tabs).
Currently, I'm using ngTouch's ngSwipeLeft and ngSwipeRight, but adding any animation after the swipe feels very abrupt and impacts the user experience negatively.
If we look at the documentation for $swipe, there are four events associated with a swipe action: start, move, end, and cancel. My question is, how can these events be overridden so that custom CSS can be applied during the transition?
How do we intercept swipe events to enhance functionality at that specific moment?