我已经测试了几个解决方案,以禁用令人厌烦的放大镜与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