Created
May 5, 2014 08:55
-
-
Save XciA/aa801ea69db1f60cdc56 to your computer and use it in GitHub Desktop.
Implementing double tap feature in IE 10 windows phone
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
IE10 introduces the MSPointer events, which normalize mouse/touch/pen inputs in IE10. | |
Another new aspect of IE10 is the ms-touch-action CSS property. | |
This CSS property tells IE10 whether to permit default touch behavior or not. | |
When using touch property we need to set ms-touch-action CSS property of the element; | |
-ms-touch-action: auto | none | [ [ [ pan-x || pan-y || pinch-zoom ? ] | manipulation ] || double-tap-zoom ? ] | |
Libraries | |
HammerJS - http://eightmedia.github.com/hammer.js/ | |
Jquery Finger : http://ngryman.sh/jquery.finger/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment