Apache Cordova:Div在鼠标下降时显得偏蓝

时间:2015-11-04 21:40:27

标签: html css css3 cordova apache-cordova

我正在用Apache-Cordova编写一个小应用程序。我有两个像这样的divs(和小黄色):

enter image description here

到目前为止一切都很好,但是当我开始向我的绿色div添加click / mouse Eventhandlers时,只要我触摸它们就会出现蓝色标记(当我持有它们时,点击不会触发)

<p id="GreenDiv" onclick="GreenDiv_OnClick()">

enter image description here

到目前为止,我已经在CSS中尝试了这些,但这不起作用:

-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none; 
-moz-user-select: none;
-ms-user-select: none;
user-select: none;

有人知道如何关闭标记吗?

1 个答案:

答案 0 :(得分:0)

答案是我在谷歌搜索后发现的这部分内容:

-webkit-tap-highlight-color: rgba(0, 0, 0, 0);