CSS图形每日一练(上)

前言

本文将持续更新CSS图形练习,同步上传 GitHub

1. 正方形(Square)

#square {
  width: 100px;
  height: 100px;
  background: red;
}
Square.png

2. 矩形(Rectangle)

#rectangle {
  width: 200px;
  height: 100px;
  background: red;
}
Rectangle.png

3. 圆形(Circle)

#circle {
  width: 100px;
  height: 100px;
  background: red;
  border-radius: 50%;
}
Circle.png

4. 椭圆形(Oval)

#oval {
  width: 200px;
  height: 100px;
  background: red;
  border-radius: 100px / 50px;
}
Oval.png

5. 上三角形(Triangle Up)

#triangle-up {
  width: 0px;
  height: 0px;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-bottom: 100px solid red;
}
triangle-up.png

6. 下三角形(Triangle Down)

#triagnle-down {
  width: 0px;
  height: 0px;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-top: 100px solid red;
}
triangle-down.png

7. 左三角形(Triangle Left)

#triangle-left {
  width: 0px;
  height: 0px;
  border-right: 100px solid red;
  border-top: 50px solid transparent;
  border-bottom: 50px solid transparent;
}
triangle-left.png

8. 右三角形(Triangle Right)

#triangle-right {
  width: 0px;
  height: 0px;
  border-left: 100px solid red;
  border-top: 50px solid transparent;
  border-bottom: 50px solid transparent;
}
triangle-right.png

9. 左上三角(Triangle Top Left)

#triangle-topleft {
  width: 0px;
  height: 0px;
  border-top: 100px solid red;
  border-right: 100px solid transparent;
}
triangle-topleft.png

10. 右上三角(Triangle Top Right)

#triangle-topright {
  width: 0px;
  height: 0px;
  border-top: 100px solid red;
  border-left: 100px solid transparent;
}
triangle-topright.png

11. 左下三角(Triangle Bottom Left)

#triangle-bottomleft {
  width: 0px;
  height: 0px;
  border-bottom: 100px solid red;
  border-right: 100px solid transparent;
}
triangle-bottomleft.png

12. 右下三角(Triangle Bottom Right)

#triangle-bottomright {
  width: 0px;
  height: 0px;
  border-bottom: 100px solid red;
  border-left: 100px solid transparent;
}
triangle-bottomright.png

13. 上半圆(Semicircle Top)

实现原理:把高度 height 设置为宽度 width 的一半,并且左上角和右上角的圆角半径与元素的高度一致,而右下角和左下角的圆角半径设置为 0

#semicircle-top {
  width: 100px;
  height: 50px;
  background: red;
  border-radius: 100px 100px 0 0;
  /* 左上、右上、右下、左下 */
}
semicircle-top.png

14. 下半圆(Semicircle Bottom)

#semicircle-bottom {
  width: 100px;
  height: 50px;
  background: red;
  border-radius: 0 0 100px 100px;
  /* 左上、右上、右下、左下 */
}
semicircle-bottom.png

15. 左半圆(Semicircle Left)

#semicircle-left {
  width: 50px;
  height: 100px;
  background: red;
  border-radius: 50px 0 0 50px;
  /* 左上、右上、右下、左下 */
}
semicircle-left.png

16. 右半圆(Semicircle Right)

#semicircle-right {
  width: 50px;
  height: 100px;
  background: red;
  border-radius: 0 50px 50px 0;
  /* 左上、右上、右下、左下 */
}
semicircle-right.png

17. 扇形(Sector)

#sector {
  width: 100px;
  height: 100px;
  background: red;
  border-radius: 100px 0 0 0;
}
sector.png

18. 梯形(Trapezoid)

#trapezoid {
  width: 100px;
  height: 0;
  border-bottom: 100px solid red;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
}
trapezoid.png

19. 平行四边形(Parallelogram)

#parallelogram {
  width: 150px;
  height: 100px;
  background: red;
  transform: skew(20deg);
}
parallelogram.png

20. 菱形(Diamond Square)

#diamond {
  width: 0;
  height: 0;
  border: 50px solid transparent;
  border-bottom-color: red;
  position: relative;
  top: -50px;
}
#diamond::after {
  width: 0;
  height: 0;
  border: 50px solid transparent;
  border-top-color: red;
  position: absolute;
  top: 50px;
  left: -50px;
  content: '';
}
diamond.png

21. Diamond Shield

#diamond-shield {
  width: 0;
  height: 0;
  border: 50px solid transparent;
  border-bottom: 20px solid red;
  position: relative;
  top: -50px;
}
#diamond-shield::after {
  position: absolute;
  content: '';
  left: -50px;
  top: 20px;
  width: 0;
  height: 0;
  border: 50px solid transparent;
  border-top: 70px solid red;
}
diamond-shield.png

22. Diamond Narrow

#diamond-narrow {
  width: 0;
  height: 0;
  border: 50px solid transparent;
  border-bottom: 70px solid red;
  position: relative;
  top: -50px;
}
#diamond-narrow::after {
  position: absolute;
  content: '';
  top: 70px;
  left: -50px;
  width: 0;
  height: 0;
  border: 50px solid transparent;
  border-top: 70px solid red;
}
diamond-narrow.png

23. Cut Diamond

#cut-diamond {
  border-style: solid;
  border-color: transparent transparent red transparent;
  border-width: 0 25px 25px 25px;
  width: 50px;
  height: 0;
  box-sizing: content-box;
  position: relative;
  margin: 20px 0 50px 0;
}
#cut-diamond::after {
  position: absolute;
  content: '';
  top: 25px;
  left: -25px;
  width: 0;
  height: 0;
  border: 50px solid transparent;
  border-top: 70px solid red;
}
cut-diamond.png

24. 五边形(Pentagon)

#pentagon {
  position: relative;
  width: 54px;
  box-sizing: content-box;
  border-width: 50px 18px 0;
  border-style: solid;
  border-color: red transparent;
}
#pentagon::before {
  position: absolute;
  content: '';
  top: -85px;
  left: -18px;
  width: 0;
  height: 0;
  border-width: 0 45px 35px;
  border-style: solid;
  border-color: transparent transparent red;
}
Pentagon.png

25. 六边形(Hexagon)

#hexagon {
  width: 100px;
  height: 55px;
  background: red;
  position: relative;
}
#hexagon::before {
  position: absolute;
  content: '';
  top: -25px;
  left: 0;
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-bottom: 25px solid red;
}
#hexagon::after {
  position: absolute;
  content: '';
  bottom: -25px;
  left: 0;
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-top: 25px solid red;
}
hexagon.png

26. 八边形(Octagon)

在Jsbin里coding时发现,盒模型将 border 的宽度加上了,无法显示应有的图形效果。随后加上box-sizing: border-box;,就可以正常显示了。

#octagon {
  width: 100px;
  height: 100px;
  background: red;
  position: relative;
}
#octagon::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100px;
  height: 0;
  border-left: 29px solid white;
  border-right: 29px solid white;
  border-bottom: 29px solid red;
}
#octagon::after {
 position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 100px;
  height: 0;
  border-left: 29px solid white;
  border-right: 29px solid white;
  border-top: 29px solid red;
}
octagon.png

27. 弯尾箭头(Curved Tail Arrow)

#curvedarrow {
  position: relative;
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-right: 9px solid red;
}
#curvedarrow::after {
  position: absolute;
  content: '';
  top: -12px;
  left: -9px;
  width: 12px;
  height: 12px;
  border: 0px solid transparent;
  border-top: 3px solid red;
  border-radius: 20px 0 0 0;
  transform: rotate(45deg);
}
curvedarrow.png

参考链接

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

  • 18- UIBezierPath官方API中文翻译(待校对) ----------------- 华丽的分割线 -...
    醉卧栏杆听雨声阅读 1,086评论 1 1
  • 本文旨在介绍制作一些常用的图标图形,拓展大家对CSS的认知,不要仅限于在定位子等简单功能上,觉得css简单的人,大...
    果汁凉茶丶阅读 1,539评论 0 2
  • 感觉今天过的特别快,都不知道一天是怎么过来的,东忙哈西南哈的,都没有看到我的小姐姐饭馆体验,经微信上了解到有个小姐...
    伽丽阅读 223评论 0 0
  • 没有人将我唤醒 我从稀疏的梦里爬起 仿佛有月光 曾落在枕上 书写一段如花般的过往 多少年 我已记不清 多少月 我也...
    小桃不是桃子阅读 176评论 0 1
  • 今天星期三,天气情。今天宝爸接嘉旭回家,一回家宝贝就说饿了,我说你中午在小饭桌没吃饱吗,他说吃饱了...
    嘉旭妈妈阅读 121评论 0 0