button添加点击效果(背景变深)

.btn:active{
       background: rgb(53, 177, 73);
}

发现在iPhone上面没效果,搜了下,pc上面是类似mousedown事件才能有效果,而iPhone上出现不了(但我的安卓手机是有效果的),搜出来是手机没有mousedown事件,而是touchstarttouchend事件,
最快的解决办法是:


    
        
Team

还有是直接在当前的button元素上添加:

el.addEventListener('touchstart',function(){},false);

Hover effects using CSS3 touch events

你可能感兴趣的:(button添加点击效果(背景变深))