在iOS html应用中禁用放大镜

时间:2014-11-24 09:15:32

标签: html ios css css3

我正在尝试禁用当我们长按iOS html应用程序中的任何元素时出现的放大镜。我想从我的整个应用程序中禁用这个放大镜。

我尝试了以下内容:

body, body * {
    -webkit-user-select: none !important;
    user-select: none !important;
    -webkit-user-callout: none !important;
    -webkit-touch-callout: none !important;
}
input, textarea {
    -webkit-user-select: text !important;
    user-select: text !important;
    -webkit-user-callout: default !important;
    -webkit-touch-callout: default !important;
}

但它不起作用。任何帮助都将受到高度赞赏

0 个答案:

没有答案