-
This is similar to #258 but the solution there (adding ``touch-action: none``) doesn't work because iOS doesn't support it - see https://caniuse.com/#feat=css-touch-action
Safari uses passive docum…
-
```
switch (event.type) {
case 'touchstart': this.start(event); break;
case 'touchmove': this.move(event); break;
case 'touchend': offloadFn(this.end(event)); break;
case 'webkitTran…
yeso updated
11 years ago
-
According to the Google devs, it is a good practice to flag every wheel, mousewheel, touchstart, and touchmove event listener with the passive attribute, see [here](https://developers.google.com/web/t…
-
- Bug:
当u-dorpdown你组件吸顶时,移动端滑动会出现Ignored attempt to cancel a touchmove event with cancelable=false, for
example because scrolling is in progress and cannot be interrupted错误,
- 解…
-
Hello, great lib, loving this project.
Does this library support touch screens (mobiles) ?
I think you should inlcude a `touchmove` where you put your `mousemove` event so resize controls can wo…
-
With iOS5, position:fixed works as expected. We can now have a fixed header and footer with scrolling content between.
If you add a Flotr2 chart to the scrollable content, swiping with your finger ov…
-
When you start scrolling on mobile(Safari && Chrome from iOS) it is able to scroll vertically and thats bad UX. Is there any workarounds for that case.
My settings:
`
let settings = {
clas…
-
Swipe left and right on a timeline to switch columns, so you don't need to tap the button in the navigation header.
I avoided this because I found that the react-swipeable-views on Mastodon sometim…
-
Using the touch event in a custom element will cause the element drag effect to be invalid,How to solve this problem???
-
hi,
I solved the problem of double click on Apple (touch hover) by adding these events.
`live('autocomplete-suggestion', 'touchstart', function(e){
is_scrolling = false;
},…