All Questions
Tagged with hammer.js jquery-mobile
11
questions
2
votes
1
answer
2k
views
Swipe Button with Javascript
I really am struggling to put a swipe functionality on my toggle button. I have tried hammer.js, jQuery Mobile and now I am trying to use regular javascript. I really need some help and guidance on ...
0
votes
3
answers
1k
views
jquery and hammer.js ghost click when panning
I'm using jQuery 191 and Hammer JS 204. I have the following example scenario
<div> class="myDiv">
<div class="content">
<img>
</div>
</div>
Example ...
2
votes
1
answer
276
views
Hammers.js and table touch events
I have an idea to make some web page suitable for touch devices, and there I have a table with rows and columns. I planned to click on some cell and produce call to different pages or functions. I ...
1
vote
0
answers
77
views
hammer.js - jQuery Mobile event-conflicts
Using hammer.js and hammer.jquery.js the tap event is called twice:
$('#button').hammer().on("tap press", function(e) {
console.log('alert!°');
}
This is because JQM also defines events that ...
0
votes
1
answer
251
views
Trying to enable swipe left
The following is my code:
<script type="text/javascript" src="js/hammer.min.js"> </script>
<script>
Hammer($(document)).on("swipeleft", function()
{
alert("Swipe ...
1
vote
0
answers
529
views
Hide div when mobile pinch zoom level > 100%
I would like to hide a div when the mobile zoom level (as initiated by a pinch zoom gesture on a mobile browser) is larger than 100%.
E.g. when a user slightly zooms in on a webpage, the div ...
1
vote
0
answers
1k
views
jQuery Mobile / Hammer.js working in iOS Safari, broken when launched from home screen
This is less of a code question and more of a library support question. (I know, I know... SO is for code debugging!)
I am using Hammer.js within a jQuery Mobile web app. I have written some gesture ...
1
vote
1
answer
2k
views
hammer drag center
I'm using Hammers library for my app. How can I drag my element from any point that I touch and not by center ? thanks !
var hammertime = Hammer(document.getElementById('contentTab'), {
...
1
vote
0
answers
828
views
Hammer.js Pinch Event in Android
When using Hammer.js with jquery mobile, its "Pinch" event isn't working well in Android, but it's working well in iOS.
I'm developing a mobile mail system like Gmail, so the detail page of an email ...
3
votes
1
answer
4k
views
Draggable drop-down menu in a website (display menu elements by touchslide)
I want to make a menu like the one in this image:
On the left side there's the complete menu (where each button is a div), but the buttons are not displayed when I open the page. I want to display ...
0
votes
1
answer
3k
views
creating a touch slider using hammer.js
To give you a little background I have been working with phonegap and jquery mobile to create a native mobile app. When using the JQUI the response on android devices seems VERY slow. In previous apps ...