移动端HTML5点击事件闪现灰色背景解决方案

html,body{
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

只需对绑定事件添加class样式 使其触发事件时背景为透明色

.class{-webkit-tap-highlight-color:transparent;}

你可能感兴趣的:(移动端HTML5点击事件闪现灰色背景解决方案)