当我点击移动设备中的按钮时。蓝色会出现几秒钟。我该如何删除它?我想用涟漪效果来塑造自己的风格。我在检查工具中找不到附加的任何伪类。
*:focus {
outline: none;
-ms-touch-action: manipulation; /* IE10 */
touch-action: manipulation; /* IE11+ */
}
div.filterButton{
position: relative;
padding-top: 10px;
cursor: pointer;
overflow: hidden;
}
答案 0 :(得分:7)
好的,所以在调试其他网站后我才知道原因
-webkit-tap-highlight-color 只需要让它透明。一切都完成了。
答案 1 :(得分:0)
例如:
a:active {color: red }