.btn:active{
background: rgb(53, 177, 73);
}
发现在iPhone上面没效果,搜了下,pc上面是类似mousedown
事件才能有效果,而iPhone上出现不了(但我的安卓手机是有效果的),搜出来是手机没有mousedown
事件,而是touchstart
和touchend
事件,
最快的解决办法是:
<body ontouchstart="">
<a href="#teamdiv">
<div class="boxbutton" id="teambb">
<h5>Team</h5>
</div>
</a>
</body>
还有是直接在当前的button元素上添加:
el.addEventListener('touchstart',function(){},false);
网友评论