TouchSwipe a jQuery plugin for touch devices.
Questions tagged [touchswipe]
21 questions
0
votes
1 answer
TouchSwipe all events
I am trying to handle the events in my function. So it does something in my gameLogic function for each type of event.
Although, the TAP doesn't get recognized ...
What should I do ? Should i separate each event ?
$(function() {
…

Kiwimoisi
- 4,086
- 6
- 33
- 64
0
votes
1 answer
Tap events not triggering for TouchSwipe
I have a site that uses touchSwipe, which is working just fine with just swiping. The problem is that the tap events don't seem to work. At first, I thought that maybe it was because an existing script in the site was interfering with it somehow so…

jsalita
- 37
- 11
0
votes
1 answer
CSS3 animation + jQuery not working properly on mobile
I'm using TouchSwipe plugin to make some animations. The main problem is on this event:
$(".swipe-area").swipe({
swipeStatus: function (event, phase, direction, distance) {
if (phase == "move") {
$('.book').css({
…

marcelo2605
- 2,734
- 4
- 29
- 55
0
votes
1 answer
How to support I.E. with Touchswipe.js
Does anyone know how to support I.E. with Touchswipe.js?
The script works fine for detecting swipe on most devices but not in IE ...
$(this).swipe( { allowPageScroll:"vertical",
swipe:function(event, direction, distance, duration,…

Coder Guy
- 87
- 9
0
votes
2 answers
Load another .html page when an event is recieved
I'm using TouchSwipe for an html/javascript hybird android app. Basically I want to enable touch/swipe so a user can swipe left/right to go to next/previous page
Index