css实现4种按钮悬浮动画效果代码
代码语言:html
所属分类:悬停
代码描述:css实现4种按钮悬浮动画效果代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<html>
<head>
<style>
body {
height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;background-color:#d0e6e7;
}
.container {
width: 80%;
height: 450px;
display: flex;
align-items: center;
justify-content: space-between;
}
button {
position: relative;
margin: 0;
padding: 5px 12px;
height: 60px;
width: 150px;
outline: none;
text-decoration: none;
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
text-transform: uppercase;
background-color: #ffffff;
border: 1px solid rgba(22, 7.........完整代码请登录后点击上方下载按钮下载查看
















网友评论0