基本上,我有一个带有:active
文字的 CSS 按钮,但是每次我点击手机上的按钮时,在切换到活动阶段之前都会有一段延迟。
CSS:
.btn {...} .btn:active{...}
然后我尝试使用"touchstart"
and"touchend"
添加和删除我的活动类,但是在 normal -> touchstart 和 touchstart -> touchend 之间仍然存在延迟。
查询:
$(".btn").on("touchstart", function(){
$(this).addClass("touched");
}).on("touchend",function(){
$(this).removeClass("touched");
})
如何消除我的延迟?