ios safari浏览器中对触摸事件的响应顺序是:
ontouchstart -> ontouchmove -> ontouchend -> (300ms) onclick
消除click默认样式
通过讲click事件样式的alpha通道设置为0(透明),消除click事件的闪烁效果
body{
-webkit-tap-highlight-color: rgba(0,0,0,0);
}
ios safari浏览器中对触摸事件的响应顺序是:
ontouchstart -> ontouchmove -> ontouchend -> (300ms) onclick
通过讲click事件样式的alpha通道设置为0(透明),消除click事件的闪烁效果
body{
-webkit-tap-highlight-color: rgba(0,0,0,0);
}