码迷,mamicode.com
首页 > Web开发 > 详细

css之利用伪类实现按钮点击状态的明暗变换

时间:2016-11-26 14:57:29      阅读:535      评论:0      收藏:0      [点我收藏+]

标签:before   style   color   border   ext   :active   利用   cli   btn   

<div class="rel">
    <div class="clickbtn">
        Button
    </div>
</div>

css部分

.clickbtn{
    position: absolute;
    width: 120px;
    height: 50px;
    top: 50%;
    left: 50%;
    background: #43b049;
    border-radius: 20px;
    transform: translate(-50%,-50%);
    color: #fff;
    text-align: center;
    cursor: pointer;
}
.clickbtn:before{
    position: absolute;
    left: 0;
    top: 0;
    right:0;
    bottom: 0;
    background: rgba(0,0,0,.1);
    border-radius: 20px;    
}
.clickbtn:hover:before{
    content: ‘‘;
}
.clickbtn:active:before{
    background: transparent;    
    content: ‘‘;
}

 

css之利用伪类实现按钮点击状态的明暗变换

标签:before   style   color   border   ext   :active   利用   cli   btn   

原文地址:http://www.cnblogs.com/SevenDrunk/p/6103982.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!