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

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

发布时间:2019-04-23 11:15 所属栏目:21 来源:前端小智
导读:26.钻石2 #cut-diamond{ border-style:solid; border-color:transparenttransparentredtransparent; border-width:025px25px25px; height:0; width:50px; box-sizing:content-box; position:relative; margin:20px0

26.钻石2

  1. #cut-diamond {  
  2. border-style: solid;  
  3. border-color: transparent transparent red transparent;  
  4. border-width: 0 25px 25px 25px;  
  5. height: 0;  
  6. width: 50px;  
  7. box-sizing: content-box;  
  8. position: relative;  
  9. margin: 20px 0 50px 0;  
  10. }  
  11. #cut-diamond:after {  
  12. content: "";  
  13. position: absolute;  
  14. top: 25px;  
  15. left: -25px;  
  16. width: 0;  
  17. height: 0;  
  18. border-style: solid;  
  19. border-color: red transparent transparent transparent;  
  20. border-width: 70px 50px 0 50px;  
  21. }  

27.蛋蛋

  1. #egg {  
  2. display: block;  
  3. width: 126px;  
  4. height: 180px;  
  5. background-color: red;  
  6. border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;  
  7. }  

28.吃豆人

  1. #pacman {  
  2. width: 0px;  
  3. height: 0px;  
  4. border-right: 60px solid transparent;  
  5. border-top: 60px solid red;  
  6. border-left: 60px solid red;  
  7. border-bottom: 60px solid red;  
  8. border-top-left-radius: 60px;  
  9. border-top-right-radius: 60px;  
  10. border-bottom-left-radius: 60px;  
  11. border-bottom-right-radius: 60px;  
  12. }  

29.对话泡泡

  1. #talkbubble {  
  2. width: 120px;  
  3. height: 80px;  
  4. background: red;  
  5. position: relative;  
  6. -moz-border-radius: 10px;  
  7. -webkit-border-radius: 10px;  
  8. border-radius: 10px;  
  9. }  
  10. #talkbubble:before {  
  11. content: "";  
  12. position: absolute;  
  13. right: 100%;  
  14. top: 26px;  
  15. width: 0;  
  16. height: 0;  
  17. border-top: 13px solid transparent;  
  18. border-right: 26px solid red;  
  19. border-bottom: 13px solid transparent;  
  20. }  

(编辑:ASP站长网)

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