Skip to content

Instantly share code, notes, and snippets.

@leohxj
Created August 21, 2013 02:52
Show Gist options
  • Save leohxj/6289870 to your computer and use it in GitHub Desktop.
Save leohxj/6289870 to your computer and use it in GitHub Desktop.
使用Modernizr检测触摸/点击事件
var isTouch = Modernizr.touch;
var defaults = {
name: "range",
tapGesture: isTouch ? "tap" : "click",
startGesture: isTouch ? "touchstart" : "mousedown",
moveGesture: isTouch ? "touchmove" : "mousemove",
stopGesture: isTouch ? "touchend touchcancel" : "mouseup",
hoverGesture: isTouch ? "touchstart" : "mouseover"
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment