css – 全球禁用放大镜在iOS 9在流星科尔多瓦应用程序

前端之家收集整理的这篇文章主要介绍了css – 全球禁用放大镜在iOS 9在流星科尔多瓦应用程序前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我已经测试了几个解决方案,以禁用令人厌烦的放大镜与css,但在我的iOS9流星科尔多瓦构建它出现了一段时间,并在一些ms后淡出.

它在iOS 8上工作,但现在在这个css代码上却不在iOS 9上:

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;
}
*{
    -webkit-tap-highlight-color: rgba(0,0);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none; /* Firefox all */
    -ms-user-select: none; /* IE 10+ */
    user-select: none;
    -webkit-user-drag: none;
    -webkit-user-modify: none;
}

我错过了iOS 9的东西?

解决方法

现在,Frederik提到的插件现在已经建成了Cordova,见 https://github.com/apache/cordova-ios/pull/174
原文链接:https://www.f2er.com/css/216321.html

猜你在找的CSS相关文章