在Chrome手机上的按钮上点亮蓝色突出显示?

scr*_*ter 7 html css

当我点击移动Chrome中的按钮时.蓝色会出现几秒钟.我该如何删除它?我想用涟漪效果来塑造自己的风格.我在检查工具中找不到任何伪类.

在此输入图像描述

    *:focus {
        outline: none;
        -ms-touch-action: manipulation; /* IE10  */
        touch-action: manipulation;     /* IE11+ */
    }


  div.filterButton{ 
      position: relative;
      padding-top: 10px;
      cursor: pointer;
      overflow: hidden;
  }
Run Code Online (Sandbox Code Playgroud)

scr*_*ter 14

好吧,经过调试其他网站,我才知道原因

这是-webkit-tap-highlight-color只需要让它透明.全部完成.