纯css3实现信纸/同学录效果(代码示例)

互联网 20-6-15

实现思路:

网格背景,由css3的线性渐变来实现。

纸上的打孔,由圆和圆柱组成,多个打孔,可以由box-shadow的平铺来实现。

实际代码:

<!DOCTYPE html> <html> <head>   <meta charset="UTF-8">   <title>Title</title> <style> .bg-grid {     height: 400px;     padding: 10px;     padding-top: 64px;     background-color: #efefef;     background-image:   linear-gradient(#e7e6e6 1px, transparent 0),                         linear-gradient(90deg, #e7e6e6 1px, transparent 0);     background-size: 21px 21px, 21px 21px;     background-position: center; }  .bg-grid:before, .bg-grid:after{     content: '';     position: absolute;     z-index: 0;     left: 50%;     transform: translateX(-50%);     display: inline-block;     background-color: #fff;     height: 28px;     box-shadow: 68px 0 0 0 #fff,                  calc(68px * 2) 0 0 0 #fff,                  calc(68px * 3) 0 0 0 #fff,                  calc(68px * 4) 0 0 0 #fff,                  calc(68px * 5) 0 0 0 #fff,                  -68px 0 0 0 #fff,                  calc(68px * -2) 0 0 0 #fff,                  calc(68px * -3) 0 0 0 #fff,                  calc(68px * -4) 0 0 0 #fff,                  calc(68px * -5) 0 0 0 #fff; } .bg-grid:before {     top: 0;     width: 10px; }  .bg-grid:after {     top: 26px;     width: 28px;     border-radius: 50%; } .bg-grid{  } </style> </head> <body> <div></div>  </body> </html>

更多炫酷CSS3、html5、javascript特效代码,尽在:js特效大全

更多相关教程请访问 CSS3最新版参考手册

以上就是纯css3实现信纸/同学录效果(代码示例)的详细内容,更多内容请关注技术你好其它相关文章!

来源链接:
免责声明:
1.资讯内容不构成投资建议,投资者应独立决策并自行承担风险
2.本文版权归属原作所有,仅代表作者本人观点,不代表本站的观点或立场
标签: css3
上一篇:php获取远程图片并下载保存到本地的方法分析 下一篇:CSS 预处理器

相关资讯