0

In order to make touch screen friendly website IE supports

canvas {
    -ms-touch-action: double-tap-zoom;
}

Is there any equivalent to be used with other browsers like chrome, Firefox, opera and safari?

Buddhika Ariyaratne
  • 2,339
  • 6
  • 51
  • 88
  • possible duplicate of [What is -ms-touch-action called in other browsers?](http://stackoverflow.com/questions/10255727/what-is-ms-touch-action-called-in-other-browsers) – Chris Apr 04 '14 at 17:16

2 Answers2

2

Chrome is shipping support for touch-action in Chrome 35: http://blog.chromium.org/2014/04/chrome-35-beta-more-developer-control.html

Rick Byers
  • 3,136
  • 2
  • 16
  • 13
1

There is no other way of implementing this in other browsers, see Krazers answer to this.

https://stackoverflow.com/a/10291359/1977007

Community
  • 1
  • 1
Jack Allen
  • 549
  • 2
  • 5
  • 19