Created
July 24, 2014 03:54
-
-
Save leohxj/6af5fbcde24aff726f02 to your computer and use it in GitHub Desktop.
禁止长按链接与图片弹出菜单
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
| 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