码迷,mamicode.com
首页 > 其他好文 > 详细

按钮效果

时间:2017-06-25 14:17:39      阅读:107      评论:0      收藏:0      [点我收藏+]

标签:radius   opacity   block   relative   abs   :hover   round   splay   before   

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
.mybtn{
display: inline-block;
padding: 5px 8px;
border: .5px solid #e8e8e8;
border-radius: 5px;
color: #3a3a3a;
position: relative;
overflow: hidden;
}
.mybtn::after{
content: "";
position: absolute;
width: 100%;
height: 100%;
bottom: 100%;
left: 0;
opacity: .8;
transition: all .5s ease-out .1s;
}
.mybtn:before{
content: "";
position: absolute;
width: 100%;
height: 50%;
top: 100%;
left: 0;
opacity: .8;
transition: all .5s ease-out .1s;
}
.mybtn:hover{
border: .5px solid #e9e9e9;
background-color: #e1e1e1;
cursor: pointer;
}
.mybtn:hover::before{
background-color: #4b6eb1;
top: 50%;
}
.mybtn:hover::after{
background-color: #4b6eb1;
bottom: 50%;
}
.mybtn:active{
border: .5px solid #d4d4d4;
background-color: #cbcbcb;
}
</style>
</head>
<body>

<div class="mybtn">按钮效果</div>

</body>
</html>

按钮效果

标签:radius   opacity   block   relative   abs   :hover   round   splay   before   

原文地址:http://www.cnblogs.com/langwo/p/7076630.html

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