2017-03-21 122 views
0

規格:
屏幕:宏碁T272HUL 27"
電腦:英特爾NUC5PGYH
操作系統:Windows 10
應用:Chrome操作系統版本56.0.2924.87 64位藍色背景鍍鉻觸摸事件

我有一些。在Kiosk模式谷歌瀏覽器的麻煩的用戶,從我在Kiosk模式下啓動鉻,有一些組策略的自定義用戶界面設置爲:C:/Program Files (x86)/Google/Chrome/Application/chrome.exe --kiosk --disk-cache-dir=null --incognito --disable-pinch file:///C:/xampp/htdocs/loading.html.

https://www.youtube.com/watch?v=9G24HGPrTao&feature=youtu.be

正如您在視頻中看到的,我在某些觸控上看到了奇怪的藍色背景。在CSS我試着這個代碼:

::-moz-selection {background: rgba(0,0,0,0);} 
::selection {background: rgba(0,0,0,0);} 
::-webkit-selection {background: rgba(0,0,0,0);} 
* { 
    -webkit-tap-highlight-color: rgba(0,0,0,0); 
    -webkit-touch-callout: none; 
    -webkit-user-select: none; 
    -khtml-user-select: none; 
     -moz-user-select: none; 
     -ms-user-select: none; 
      user-select: none; 
} 

來阻止它,但它不工作。

由於保密原因,我無法發佈網站或代碼。

回答

0

嘗試*:focus,並將outline: none;添加到您的CSS也。

+0

我試過這個。它不起作用。 – pandaNine

0

看起來像是當touchstart事件轉換爲單擊事件時繪製的正方形高亮框。然後根據touchend或onmouseup事件發生背景變化 - 嘗試查看開發工具(如果可以訪問它們)以查看是否有任何事件綁定到了主體。