美文网首页
button添加点击效果(背景变深)

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

作者: 别过经年 | 来源:发表于2017-03-24 16:25 被阅读235次
    .btn:active{
           background: rgb(53, 177, 73);
    }
    

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

    <body ontouchstart="">
        <a href="#teamdiv">
            <div class="boxbutton" id="teambb">
                <h5>Team</h5>
            </div>
        </a>
    </body>
    

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

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

    Hover effects using CSS3 touch events

    相关文章

      网友评论

          本文标题:button添加点击效果(背景变深)

          本文链接:https://www.haomeiwen.com/subject/sssfottx.html