css布局压缩机动画效果
代码语言:html
所属分类:布局界面
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<style>
.pos-r {
position: relative;
}
.fw {
width: 100%;
}
.before-after-handler {
content: "";
position: absolute;
}
/* RESETS & DEFAULTS */
*,
*:before,
*:after {
box-sizing: border-box;
}
body {
margin: 0;
padding: 0;
background-color: #333333;
height: 100vh;
font-family: 'Arial';
}
a {
text-decoration: none;
color: rgba(156, 156, 247, 0.6);
}
.compressor {
margin: 32px auto;
width: 230px;
position: relative;
}
.compressor:before,
.compressor:after {
content: "";
display: table;
}
.compressor:after {
clear: both;
}
.compressor .holder {
float: left;
width: 100%;
height: 32px;
background-color: #cccccc;
border: 4px solid #000000;
position: relative;
}
.........完整代码请登录后点击上方下载按钮下载查看
















网友评论0