All Questions
39
questions
0
votes
1
answer
293
views
IOS device keyboard not opening on single tap event itext insert fabricjs hammerjs with Angular 9
I am using fabricjs for canvas and hammerjs for touch event with Angular 9. I have a single tap event of hammerjs which creates an object of fabric's IText. Single tapping creates the fabric and ...
0
votes
0
answers
255
views
simple Hammer.js example works on iPhone 6 (iOS 12.4.1) but not on iPhone 7+ (iOS 13.1.2)
This simple Hammer.js example, which detects swipeleft and swiperight events
https://codepen.io/mindmodel/pen/yLLYGKr
var mc = new Hammer(myElement);
// listen to events...
mc.on("...
0
votes
1
answer
455
views
Code iOS scrollbars to workaround Bootstrap 4 Carousel Bug: Click/Tap causes additional unwanted swipes
The issue & environment
Running Bootstrap 4 from CDN and there is currently a known bug affecting the Carousel on iOS devices for which a fix github #28558 is devised, but still pending i.e. NOT ...
1
vote
3
answers
2k
views
Why hammer.js swiping does not work for iPhone
I couldn't find a more direct way to ask people who are familiar with hammer.js so i'm posting here.
So i've been working on a web app with 8thwall using hammer.js for swiping/scrolling. i've been ...
0
votes
0
answers
889
views
HammerJS pan is not working on iOS (under Ionic)
I am programming an app in Ionic and using hammer.js for the pan gesture (for the moment, only this one). In the browser (chrome and safari) this is working fine, also on Android device, but I just ...
0
votes
1
answer
1k
views
How to debug Ionic iOS swipe gesture issues
I am dealing with a weird bug on Ionic's iOS native build where I sometimes cannot swipe back or switch tabs once I transition to a new page using router.navigateByURL(...), and trying to debug this ...
0
votes
1
answer
2k
views
Hammerjs not working on Chrome or Safari in IOS (made with Vuejs)
I'm working on an app that has a navdrawer and i added the gesture swipe with hammerjs to close the navdrawer when swiping left, the code looks like this:
<template>
<nav id="navbar" class=...
0
votes
1
answer
2k
views
PDF.JS: Reloadeing/ re-rendering due to zoom stops JS events
When I execute the Pinch Zoom gesture (wipe 2 fingers apart or to each other on the display), on the PDF.JS viewer.html in an Cordova app on iOS 11.4.1, the document should be permanently zoomed in or ...
0
votes
0
answers
242
views
Ionic pinchin and pinchout gestures don't seem to work with android
this is my pinch zone.
<div class="pinch-div" #pinchDiv></div>
related properties
gesture: Gesture;
@ViewChild('pinchDiv') element;
initialization
this.angle = 15;
this.gesture = new ...
3
votes
1
answer
1k
views
Hammer.js recognize pinch and rotate separately
I am trying to use Hammer.js to recognize touch events. I want to do separate things on the pinch and rotate gesture, but once I add both recognizers to my Hammer.Manager, only the rotate gesture is ...
2
votes
1
answer
762
views
How can I use a HammerJS pinch gesture on iOS without scrolling a page?
I'm using Ember-Gestures which implements Hammer.js in a Cordova app to implement some simple gesture controls.
I'm running into a major problem whereby any gesture that triggers an animation (...
0
votes
1
answer
958
views
Angular2, HammerJs, swipeup not working with android
I have a ngFor list of items. Each item has a swipeleft/swiperight directive that displays a delete button. (Think iOS message interactions). When i go to swipeup however, as if to scroll through the ...
0
votes
0
answers
105
views
Hammer JS events stop by themselves
I have a problem with Hammer JS. I have implemented it with CreateJS and used a global DOM element to latch onto and then created a manager to fire the events down the chain into CreateJS, the events ...
0
votes
1
answer
960
views
Double-tap zoom & hammer.js issue
Please could someone advise me on the following:
I have an image that when double-tapped or pinched-out should display an overlay.
I have used hammer.js which successfully carried out the pinch-out ...
1
vote
1
answer
1k
views
Accurately Capture the 'scrollend' event on Mobile
When using the -webkit-overflow-scrolling: touch; style on a mobile element, capturing the scroll events can be extremely tiresome as they are triggered by 'flicking', 'panning' and when the scroll ...