赞
踩
虽然我们现在大都使用字体图标或者svg图片,似乎使用 CSS 来做图标意义不是很大,但怎么实现这些图标用到的一些技巧及思路是很值得我们的学习。
.circle {
width: 120px;
height: 120px;
background: #8BC34A;
border-radius: 100%;
}
.ring {
width: 100px;
height: 100px;
border: 10px solid #8BC34A;
border-radius: 100%;
}
web前端开发学习Q-q-u-n:784783012 ,分享学习的方法和需要注意的小细节,不停更新最新的教程和学习方法(详细的前端项目实战教学视频)
.ellipsis {
width: 200px;
height: 120px;
background: #8BC34A;
border-radius: 100px/60px;
}
.top-semicircle { width: 120px; height: 60px; background: #8BC34A; border-radius: 60px 60px 0px 0px; } .right-semicircle { width: 60px; height: 120px; background: #8BC34A; border-radius: 0 60px 60px 0; } .bottom-semicircle { width: 120px; height: 60px; background: #8BC34A; border-radius: 0 0 60px 60px; } .left-semicircle { width: 60px; height: 120px; background: #8BC34A; border-radius: 60px 0 0 60px; } web前端开发学习Q-q-u-n:784783012 ,分享学习的方法和需要注意的小细节,不停更新最新的教程和学习方法(详细的前端项目实战教学视频)
.toplf-sector, .toprt-sector, .bottomlf-sector, .bottomrt-sector { width: 60px; height: 60px; background: #8BC34A; } .toplf-sector { border-radius: 60px 0 0 0; } .toprt-sector { border-radius: 0 60px 0 0; } .bottomlf-sector { border-radius: 0 0 0 60px; } .bottomrt-sector { border-radius: 0 0 60px 0; }
.heart-shaped {
width: 80px;
height: 80px;
background: #8BC34A;
position: relative;
transform: rotate(45deg);
}
.heart-shaped::before {
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。