css悬停按钮交叉动画效果代码
代码语言:html
所属分类:悬停
代码描述:css悬停按钮交叉动画效果代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<html>
<head>
<style>
@import 'https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300';
html,
body {
width: 100%;
height: 100%;
overflow: hidden;
margin: 0;
display: flex;
flex-direction: column;
flex-wrap: wrap;
font-family: 'Open Sans Condensed', sans-serif;
}
div[class*=box] {
height: 33.33%;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
}
.box-1 {
background-color: #FF6766;
}
.box-2 {
background-color: #3C3C3C;
}
.box-3 {
background-color: #66A182;
}
.btn {
line-height: 50px;
height: 50px;
text-align: center;
.........完整代码请登录后点击上方下载按钮下载查看
















网友评论0