css3实现信纸/同学录效果的示例代码
网站建设 2023-01-28 21:38www.1681989.com免费网站
本文介绍了css3实现信纸/同学录效果的示例代码,分享给大家,具体如下
实现思路
网格背景,由css3的线性渐变来实现。
纸上的打孔,由圆和圆柱组成,多个打孔,可以由box-shadow的平铺来实现。
实际代码
<div class="bg-grid"></div> <style> .bg-grid { height: 400px; paddg: 10px; paddg-: 64px; background-color: #efefef; background-image: lear-gradient(#e7e6e6 1px, transparent 0), lear-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-dex: 0; left: 50%; transform: translateX(-50%); display: le-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 { : 0; width: 10px; } .bg-grid:after { : 26px; width: 28px; border-radius: 50%; } .bg-grid{ } </style>
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持狼蚁SEO。