美文网首页
active无效

active无效

作者: 智多牛 | 来源:发表于2016-12-15 16:02 被阅读0次


    <div id="button" disable='true'>按钮</div>

    <!-- 样式 -->
    <style>
    
        #button
        {
            width : 200px;
            height: 40px;
            background-color: orangered;
            border-radius: 5px;
            
            text-align: center;
            line-height: 40px;
            color: #FFF;
            
            cursor: pointer;
        }
        
        #button:active
        {
            opacity: 0.5;
        }
        
    </style>
    
    <script>
        
        document.body.addEventListener('touchstart',function () {});
        
    </script>

    相关文章

      网友评论

          本文标题:active无效

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