2

iPad で表示できるようにする必要がある Web ページを作成しています。

すべてが素晴らしいのですが、何かをクリックするたびに、この厄介な黒いフラッシュが発生します。私はかなりの数の解決策を試しました:

html {
    -webkit-tap-highlight-color: rgba(0,0,0,0); 
    -webkit-user-select: none;
    -webkit-touch-callout:none;
} 


<script type="text/javascript">
    document.documentElement.style.webkitTouchCallout = "none";
</script>

要素自体に追加しても:

.viewCont {
    width: 1000px;
    height: 690px;
    position: absolute;
    background-repeat: no-repeat;
    -webkit-tap-highlight-color: rgba(0,0,0,0); 
    -webkit-user-select: none;
    -webkit-touch-callout:none;
}

iPad の Safari で表示すると機能しますが、スタンドアロンのダッシュボード アプリにすると、ちらつきが再発します。

誰にもヒントやアドバイスがありますか?

4

1 に答える 1

3

これを HTML タグだけでなく、すべての要素に適用する必要があります。このようにしてみてください

html * {
    -webkit-tap-highlight-color: rgba(0,0,0,0); 
    -webkit-user-select: none;
    -webkit-touch-callout:none;
} 
于 2013-02-22T18:54:06.520 に答える