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

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

发布时间:2019-04-23 11:15 所属栏目:21 来源:前端小智
导读:30. 12点 爆发 #burst-12{ background:red; width:80px; height:80px; position:relative; text-align:center; } #burst-12:before, #burst-12:after{ content:; position:absolute; top:0; left:0; height:80px; w

30. 12点 爆发

  1. #burst-12 {  
  2. background: red;  
  3. width: 80px;  
  4. height: 80px;  
  5. position: relative;  
  6. text-align: center;  
  7. }  
  8. #burst-12:before,  
  9. #burst-12:after {  
  10. content: "";  
  11. position: absolute;  
  12. top: 0;  
  13. left: 0;  
  14. height: 80px;  
  15. width: 80px;  
  16. background: red;  
  17. }  
  18. #burst-12:before {  
  19. transform: rotate(30deg);  
  20. }  
  21. #burst-12:after {  
  22. transform: rotate(60deg);  
  23. }  

31. 8点 爆发

  1. #burst-8 {  
  2. background: red;  
  3. width: 80px;  
  4. height: 80px;  
  5. position: relative;  
  6. text-align: center;  
  7. transform: rotate(20deg);  
  8. }  
  9. #burst-8:before {  
  10. content: "";  
  11. position: absolute;  
  12. top: 0;  
  13. left: 0;  
  14. height: 80px;  
  15. width: 80px;  
  16. background: red;  
  17. transform: rotate(135deg);  
  18. }  

32.太极

  1. #yin-yang {  
  2. width: 96px;  
  3. box-sizing: content-box;  
  4. height: 48px;  
  5. background: #eee;  
  6. border-color: red;  
  7. border-style: solid;  
  8. border-width: 2px 2px 50px 2px;  
  9. border-radius: 100%;  
  10. position: relative;  
  11. }  
  12. #yin-yang:before {  
  13. content: "";  
  14. position: absolute;  
  15. top: 50%;  
  16. left: 0;  
  17. background: #eee;  
  18. border: 18px solid red;  
  19. border-radius: 100%;  
  20. width: 12px;  
  21. height: 12px;  
  22. box-sizing: content-box;  
  23. }  
  24. #yin-yang:after {  
  25. content: "";  
  26. position: absolute;  
  27. top: 50%;  
  28. left: 50%;  
  29. background: red;  
  30. border: 18px solid #eee;  
  31. border-radius: 100%;  
  32. width: 12px;  
  33. height: 12px;  
  34. box-sizing: content-box;  
  35. }  

(编辑:ASP站长网)

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