欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

去除 andriod webview 中图片被点击的蓝色效果

程序员文章站 2024-02-10 14:22:16
...

也是困扰了许久,最后我发现是css样式的效果。

所以加了如下代码,禁用掉全部的点击态。

<style type="text/css">
    * {
        -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
        -webkit-focus-ring-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;
    }
</style>
相关标签: webview tap focus