Skip to content

Instantly share code, notes, and snippets.

@leohxj
Created July 24, 2014 03:54
Show Gist options
  • Select an option

  • Save leohxj/6af5fbcde24aff726f02 to your computer and use it in GitHub Desktop.

Select an option

Save leohxj/6af5fbcde24aff726f02 to your computer and use it in GitHub Desktop.
禁止长按链接与图片弹出菜单
a, img {
-webkit-touch-callout: none; /* 禁止长按链接与图片弹出菜单 */
}
html, body {
-webkit-user-select: none; /* 禁止选中文本(如无文本选中需求,此为必选项) */
user-select: none;
-webkit-tap-highlight-color: rgba(0,0,0,0);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment