I am working on a website (in HTML5, CSS3 and JS) which'll primarily be opened only in iPad.
I want to implement swipe movements which would redirect the current page to some other page.
I managed to implement this through padilicious with the following JS:-
if ( swipeDirection == 'left' ) {
window.location.href = 'other.html';
}
This works but the animation is not present; on swipe, the new page just loads. I am hoping that when I swipe the old page, it moves with my finger before a new page slides (or loads) in.
any assistance?
Thanks.