移动端和pc 端页面的效果是有很多区别的,下面看一下这个移动端的点击高亮:

当我们写一个链接时,我看看看点击效果:

移动端页面中的 点击高亮效果 -webkit-tap-highlight-color


上面我们点击的时候出现了高亮的背景色,有的时候我们不需要的话就需要进行设置:

设置  -webkit-tap-highlight-color: 参数 ;

这里我设置了背景色透明,就是没有颜色:

a{
.wh(100px,100px);
display:block;
-webkit-tap-highlight-color:transparent;
}


或者设置你需要的颜色:红色

a{
.wh(100px,100px);
display:block;
-webkit-tap-highlight-color:red;
}

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-07-27
  • 2022-12-23
  • 2021-12-24
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-08-01
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案