css实现4种按钮悬浮动画背景效果代码
代码语言:html
所属分类:悬停
代码描述:css实现4种按钮悬浮动画背景效果代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="initial-scale=1, maximum-scale=1">
<style>
body{
background: white;
}
p {
font-family: 'Lato', sans-serif;
font-weight: 300;
text-align: center;
font-size: 18px;
color: #676767;
}
.frame {
width: 90%;
margin: 30px auto;
text-align: center;
}
.custom-btn {
width: 170px;
margin:20px;
height: 55px;
color: #fff;
border-radius: 5px;
padding: 10px 25px;
font-family: 'Lato', sans-serif;
font-weight: 500;
font-size:16px;
background: transparent;
cursor: pointer;
transition: all 0.3s ease;
.........完整代码请登录后点击上方下载按钮下载查看
















网友评论0