设为首页 - 加入收藏 ASP站长网(Aspzz.Cn)- 科技、建站、经验、云计算、5G、大数据,站长网!
热搜: 重新 试卷 文件
当前位置: 首页 > 运营中心 > 建站资源 > 优化 > 正文

45个值得收藏的CSS形状(5)

发布时间:2019-04-23 11:15 所属栏目:21 来源:前端小智
导读:22.无穷大 #infinity{ position:relative; width:212px; height:100px; box-sizing:content-box; } #infinity:before, #infinity:after{ content:; box-sizing:content-box; position:absolute; top:0; left:0; wid

22.无穷大

  1. #infinity {  
  2. position: relative;  
  3. width: 212px;  
  4. height: 100px;  
  5. box-sizing: content-box;  
  6. }  
  7. #infinity:before,  
  8. #infinity:after {  
  9. content: "";  
  10. box-sizing: content-box;  
  11. position: absolute;  
  12. top: 0;  
  13. left: 0;  
  14. width: 60px;  
  15. height: 60px;  
  16. border: 20px solid red;  
  17. border-radius: 50px 50px 0 50px;  
  18. transform: rotate(-45deg);  
  19. }  
  20. #infinity:after {  
  21. left: auto;  
  22. right: 0;  
  23. border-radius: 50px 50px 50px 0;  
  24. transform: rotate(45deg);  
  25. }  

23.菱形

  1. #diamond {  
  2. width: 0;  
  3. height: 0;  
  4. border: 50px solid transparent;  
  5. border-bottom-color: red;  
  6. position: relative;  
  7. top: -50px;  
  8. }  
  9. #diamond:after {  
  10. content: '';  
  11. position: absolute;  
  12. left: -50px;  
  13. top: 50px;  
  14. width: 0;  
  15. height: 0;  
  16. border: 50px solid transparent;  
  17. border-top-color: red;  
  18. }  

24.钻石

  1. #diamond-shield {  
  2. width: 0;  
  3. height: 0;  
  4. border: 50px solid transparent;  
  5. border-bottom: 20px solid red;  
  6. position: relative;  
  7. top: -50px;  
  8. }  
  9. #diamond-shield:after {  
  10. content: '';  
  11. position: absolute;  
  12. left: -50px;  
  13. top: 20px;  
  14. width: 0;  
  15. height: 0;  
  16. border: 50px solid transparent;  
  17. border-top: 70px solid red;  
  18. }  

25.钻戒

  1. #diamond-narrow {  
  2. width: 0;  
  3. height: 0;  
  4. border: 50px solid transparent;  
  5. border-bottom: 70px solid red;  
  6. position: relative;  
  7. top: -50px;  
  8. }  
  9. #diamond-narrow:after {  
  10. content: '';  
  11. position: absolute;  
  12. left: -50px;  
  13. top: 70px;  
  14. width: 0;  
  15. height: 0;  
  16. border: 50px solid transparent;  
  17. border-top: 70px solid red;  
  18. }  

(编辑:ASP站长网)

网友评论
推荐文章
    热点阅读