Tagged Questions
0
votes
1answer
18 views
Unified and transparent pointer events in jQuery
I have a bootstrap .btn that I want to toggle with the mouse click. The problem is that the response is way too slow on tablets, since the click arrives 300 ms after the touchstart in mobile browsers. ...
0
votes
0answers
6 views
Preventing default windows 7 multi touch event from firing with javascript
I'm currently working on an html5/javascript kiosk web app that will run full screen on a windows 7 PC with a 42 inch touch display. In the app I have a page where the user can pinch zoom an image in ...
1
vote
1answer
16 views
WebKit: How to determine what elements are under a touch while dragging an animating div
I'm trying to implement drag and drop for Mobile Safari.
Basically I want to drag a div via touch while it plays a looping CSS animation. I also want to determine when it's above a drop target and do ...
0
votes
0answers
24 views
Input data cannot be processed in the non-chronological order - Error being thrown from WinRT
I am currently using the below code for detecting gestures
var inputManager = (function () {
var that = {};
var gr;
var canvas;
var manipulating = false;
...
0
votes
0answers
18 views
Javascript/GWT - Can multitouch events be captured on a touchpad?
Can multitouch events (two, three fingers) be captured on a laptop browser (ex. Chrome) when using the touchpad, with Javascript / GWT ?
0
votes
0answers
3 views
Javascript multitouch as independent events
I have to make 2 independent drag events at the same time in JavaScript.
If I register touch events ( touchstart, touchmove, touchend ) for each 2 divs (#divA, #divB) and i start draging on #divA, ...
3
votes
0answers
67 views
Improve multi touch performance on Android browsers
I need to implement pinch to zoom and drag to pan over an SVG.
This SVG gets shown at 480*480 pixels, but its real size is 1920*1920 pixels.
I went with HammerJS, and listened for pinch and drag:
...
0
votes
2answers
63 views
How to drag multiple shape on canvas? [kineticjs]
For example:
one tap is moving a shape.
Another tap is moving another shape at same time.
0
votes
1answer
402 views
How do I disable scrolling in iOS using Hammer.js?
I'm trying to disable scrolling altogether in iOS with Hammer.js (jQuery version) but it still works.
I tried:
$(document).hammer().on('swipe,drag', 'body',
function(event)
{
...
0
votes
2answers
141 views
JS that should listen for pinch in and pinch out not working
I am trying to execute a function on pinch in of the body and then another function on pinch out.
Since i'm already using jquery.hammer.js in this document and hammer can listen for in and out ...
0
votes
1answer
263 views
Code that listens for swipe-up gesture not working
I am trying to run an alert when a swipe-up gesture occurs anywhere on the document; and, ultimately also when a 2 finger swipe-gesture occurs.
I've used hammer.js to listen for gestures before and ...
0
votes
0answers
57 views
Access touch history when `touchmove` event is captured
I am trying to learn how to use the touchmove event in browser to detect multitouch gestures. When a touchmove event is captured I can obtain a list of current touch points. However that is not very ...
0
votes
0answers
85 views
touchpad as multitouch input
In Windows 7 using Chrome or Firefox, I want to get these standard js events from a regular laptop Synaptics touchpad.
I'm also fine using a TUIO plugin such as npTuioClient, which I have already ...
1
vote
0answers
70 views
How to determine I am currently processing the last touchmove event?
As I determined in this topic, the touchmove event is liable to be sent in batches depending on the combination of elements being touched.
If I have three fingers each touching a different element, ...
1
vote
1answer
107 views
Does targetTouches track touches moving simultaneously on multiple elements?
Suppose I've got four fingers down: two fingers (1, 2) in element A and two (3, 4) in element B.
Suppose I then move finger 1 and finger 3.
I should be looking at a touchmove event which will ...
4
votes
2answers
229 views
Attempting to get two simultaneous joysticks working with touch events
I've been battling with this for two days. I'm using an HTML5/JS game engine called ImpactJS and someone made a very useful plugin to create joystick touch zones for mobile devices. The idea is that ...
1
vote
0answers
74 views
How to develop for iOS gesture events in a web app in Windows Desktop?
I am developing a web app that should respond to gesture events in iPad (pinch in and out should perform some custom zoom in and out in my web app). I don't have a Mac, so is there a simulator in ...
3
votes
1answer
147 views
Is there is any simulater that triggers gestures events in JavaScript on Windows 7?
I have enabled the Emulate Touch Events option in Chrome's Developer Tools, to test the touch events, it works fine, but when i pinch in and pinch out the chrome page is not triggering gesturestart ...
4
votes
2answers
843 views
Gesture events are not emulate by chrome
I've enabled the "Emulate Touch Events" option in Chrome's Developer Tools. It emulates the touch events only, but it's not emulating the gestures event.
I am using the the ...
0
votes
0answers
91 views
Kinetic.Image's multitouch behaviour on mobile devices
I am developing a game using Kinetic, and I am having trouble related to images and multitouch. This game I am developing allows the user to zoom (1x, 1.5x and 2x) images and drag them. When those ...
1
vote
0answers
244 views
getting MSPointerUp events to fire without disabling browser interaction in IE10
I am trying to get some code to kick in after the browser has been scrolled.
If I do
function handleDown(event) {
console.log("down");
}
function handleUp(event) {
console.log("up");
}
...
0
votes
2answers
257 views
“Parse” touch events in Firefox
I've got a demo that is required to run in Firefox on a Windows 7 touch tablet. According to this, Mozilla has implemented a standardized touch API. However, this does not work on a windows 7 tablet. ...
0
votes
0answers
101 views
CSS3 WebKitCSSMatrix issue - gestureChange
I'm building a zoom & pan view with css3 Matrix3d. It works first time afterwards it breaks with out any errors.
gestureChange - event triggers first time but after that it not firing.
...
0
votes
1answer
371 views
unifying touch and click events
I'd assume this question has been asked to death, but I'm not finding anything good.
What I'd like is a unified set of events that span devices. I know the mapping isn't always 1 to 1, but just ...
0
votes
1answer
187 views
How to detect when multitouch finger moves onto child element?
My implementation works great with a mouse where I can use a delegated jQuery on("mousemove","*") handler to detect when the user mouses over something and this triggers an action.
I want to do the ...
11
votes
4answers
1k views
multiple touches: touchend event fired only when a touchmove occurs
I would like to add some multitouch features to my javascript application when it is accessed from an ios device (and maybe android later).
I want to provide a shiftkey-like functionality: the user ...
3
votes
2answers
2k views
Phonegap IOS App Image ZOOM Multitouch
I'm developing an app with Phonegap for IOS. I would zoom and move an image contained in a box div (overflow hidden) with the finger: multitouch for zoom in and out and touchmove for move the image.
...
3
votes
0answers
550 views
javascript multi-touch on win 7
Is there any good solution for developing web applications that can work with iOS multitouch and Win 7 multitouch? Being limited to a specific browser such as firefox or chrome is acceptable but all ...
1
vote
2answers
1k views
Disable screen resize on windows with touchscreen
I'm developing a presentation-like local site (will be local, displayed on several screens and that's all) and i pick to develop on chrome (you know, awesome support for all neat stuff). Chrome will ...
0
votes
1answer
542 views
complex Mobile Safari multitouch detection
Would it be possible to do something like this:
http://itunes.apple.com/us/app/foot-fairy-fun-kids-shoe-measurement/id460810086?mt=8
This is rather complex multitouch detection I'd like to implement ...
1
vote
0answers
335 views
Multi touch in desktop browser (Like Google Maps in IE9)
I'm trying to create a multi touch web application, but I cannot get any desktop browser to receive multi touch events - only "click events". (It works on my iPhone where).
The only working example ...
1
vote
1answer
885 views
Cross-platform HTML touchend event handling
In reading about the touchend event, it seem that the behavior is somewhat inconsistent across different devices. I simply want to know the best and simplest way to determine whether all touching has ...
0
votes
1answer
1k views
Custom multi-touch gestures in Javascript
I'm developing a web-app and want to use JavaScript and HTML5 for gestures. I came across this -http://scripty2.com/demos/touch/ , but for this we need Starlight browser ...
6
votes
3answers
2k views
Multi-touch gestures in webapp on desktop
I'm developing online map(like google maps) of cool fantasy world. I'm also use OS X on my main computer. Since OS X(especially Lion) are focused on different multi-touch gestures because almost of ...
1
vote
0answers
236 views
How to translate an input into a mouseEvent to browse Internet using Javascript
I am receiving Multitouch events (TUIO) through a plugin in Firefox. I have a Javascript file that manages those signals and I can play with them in a browser as TUIO.
What I would like is some kind ...
2
votes
0answers
195 views
Image cropping tool for touch based phones using javascript
Is there a cropping tool(marquee tool) written in javascript which would work on mobile browsers? Most of the marquee tools(cropping tool) that are written use mouse handles which would fail on touch ...
2
votes
1answer
292 views
Multitouch desktop brower
I have made a multitouch surface ad it is pretty awesome. However, I am wondering if there is any desktop browser that supports multitouch as input and then exposes it either via an API or already ...
1
vote
1answer
697 views
Carousel - element position changes visually on touchend
I am trying to build a touch/swipe carousel for mobile safari. So far, so good, but I am running into an issue when I try to set the left position of the elements after they've been swiped. The left ...
0
votes
3answers
494 views
What are cross-platform free/Open source Framework to create Touch based web apps/site using HTML/CSS/JS available?
What are cross-platform and cross browser and license free/Open source framework to create Touch/Multitouch based Web apps/site using HTML/CSS/JS, for mobile devices, specially for latest versions of ...
0
votes
1answer
415 views
Multitouch webpages for non-iPhone devices
I read this : http://www.sitepen.com/blog/2008/07/10/touching-and-gesturing-on-the-iphone/ which I find very interesting as a mobile developer. Do you have any link to do this on other mobile ...
4
votes
1answer
1k views
Is there a way to detect, through browser javascript, multi-touch events of a trackpad, magic mouse or magic trackpad on a mac?
I know there are many ways to do so directly on the iPhone (jQtouch), but I'd like to detect those events in my computer's browser.
1
vote
1answer
2k views
Touch events available in Safari?
A friend and I were discussing Mozilla's latest touch support and got on the question of what Safari provides for this. Searches seem to turn up nothing.
Do you know of anything that provides touch ...
11
votes
6answers
9k views
Do Android/webOS devices support multi-touch Javascript events?
On iPhone, iPod touch and (presumably) iPad, Apple has multi-touch event handling available via JavaScript in Mobile Safari. I know the Nexus One recently added multi-touch support via an update, and ...
