CSS FAQ: How to draw polygons (triangles ~ hexagons)

青灯夜游
Release: 2021-09-16 10:57:38
forward
6173 people have browsed it

How to draw polygons using pure CSS? This article will introduce to you how to draw triangles starting from pure CSS, and introduce the methods of drawing quadrilaterals, pentagons, and hexagons. Higher implementation methods can also be drawn by analogy. I hope it will be helpful to everyone!

CSS FAQ: How to draw polygons (triangles ~ hexagons)

Today I am going to study a CSS question that is often tested in interviews, using CSS to draw polygons. This time we take triangles, quadrilaterals, pentagons, and hexagons as examples. First, we need to understand some necessary knowledge before starting.

1. Basic knowledge reserve

This time we will use pure CSS knowledge to draw some shapes. In order to draw these shapes, first learn the required CSS Basic knowledge point-css box model. [Related recommendation: "css video tutorial"]

CSS FAQ: How to draw polygons (triangles ~ hexagons)

As can be seen from the above picture, the standard box model is composed of content , padding, border, and margin. Let’s take a look at the specific situation using code.

<!--HTML部分,此部分代码若是不变,后面将复用不在赘述-->
<div id="main"></div>
Copy after login
/*css部分*/ 
#main { 
  width: 100px;
  height: 100px;
  border: 200px solid red; 
}
Copy after login

The renderings are as follows:

CSS FAQ: How to draw polygons (triangles ~ hexagons)

2. Actual combat

It’s all talk but no practice, now it’s up to you to use it These basic CSS properties are used to draw common triangles, quadrilaterals, pentagons...

2.1 Quadrilateral

If you cannot directly use the background-color property to draw a quadrilateral, we can use the above picture to It can be seen that if the width and height of the content are all set to 0, and the width and height of the border are set, then we can get a quadrilateral consisting only of the border. Quadrilaterals are divided into squares, parallelograms, rectangles, etc. Here is Let's use borders to implement the three graphics above.

2.1.1 Square

First let us implement the simplest square.

#main {
  width: 0px;
  height: 0px;
  border-bottom: 200px solid red;
  border-left: 200px solid black;
  border-right: 200px solid blue;
  border-top: 200px solid pink;
}
Copy after login
Copy after login

The effect is shown in the figure below:

CSS FAQ: How to draw polygons (triangles ~ hexagons)

2.1.2 Rectangle

In 2.1.1 we have already achieved this by using border To implement a square, let’s implement a rectangle next. Based on the mathematical knowledge we have learned, we only need to adjust the length and width of the square so that the length ≠ the width. Let’s implement it next.

#main {
  width: 0px;
  height: 0px;
  border-bottom: 200px solid red;
  border-left: 100px solid red;
  border-right: 100px solid red;
  border-top: 200px solid red;
}
Copy after login

The effect is shown in the figure below:

CSS FAQ: How to draw polygons (triangles ~ hexagons)

2.1.3 Parallelogram

PS: The realization of parallelogram requires the use of two triangles To implement, it is recommended to skip it here. Please go to Reading 2.2 to see the implementation of the triangle, and then go back to see the parallelogram method here.

It is assumed that you have finished reading the content of 2.2. Next, realize the parallelogram.

<div id="wrapper">
	<div class="public"></div>
	<div class="public move"></div>
</div>
Copy after login
*{
   margin: 0;
}
#wrapper {
	  position: relative;
}
.public {
   width: 0px;
   height: 0px;
  border-bottom: 200px solid red;
  border-left: 200px solid transparent;
  border-right: 200px solid transparent;
  border-top: 200px solid transparent;
  position: absolute;
}
.move {
  transform: rotate(180deg);
  top: 200px;
  left: 200px;
}
Copy after login

The effect is as shown below:

CSS FAQ: How to draw polygons (triangles ~ hexagons)

2.2 Triangle

So far, the simplest quadrilateral has been completed, so at this time it is Don’t you already have feelings? Let's go on. Since borders can realize quadrilaterals, triangles should be no problem. Of course, there are many types of triangles. According to the angles, they can be divided into acute triangles, right triangles, and obtuse triangles. Let's implement them separately. one time.

2.2.1 Acute triangle

First of all, let’s take a look at the situation occupied by the left, right, top, and bottom of the border when the width and height of the content are both 0. .

#main {
  width: 0px;
  height: 0px;
  border-bottom: 200px solid red;
  border-left: 200px solid black;
  border-right: 200px solid blue;
  border-top: 200px solid pink;
}
Copy after login
Copy after login

The rendering is as follows:

CSS FAQ: How to draw polygons (triangles ~ hexagons)

It can be seen from the picture that left, right, top and bottom all occupy a triangle, then when we When we need a certain triangle, we only need to hide the other three triangles. We can use the transparent attribute value to hide the border, so let's implement it.

#main {
  width: 0px;
  height: 0px;
  border-bottom: 200px solid red;
  border-left: 200px solid transparent;
  border-right: 200px solid transparent;
  border-top: 200px solid transparent;
}
Copy after login

The effect is shown in the picture:

CSS FAQ: How to draw polygons (triangles ~ hexagons)

2.2.2 Right triangle

At this point we can draw an acute triangle, right angle We can get the triangle based on the picture above. Just display the two border sides. Try the code.

#main {
  width: 0px;
  height: 0px;
  border-bottom: 200px solid red;
  border-left: 200px solid red;
  border-right: 200px solid transparent;
  border-top: 200px solid transparent;
}
Copy after login

The effect is as shown in the picture:

CSS FAQ: How to draw polygons (triangles ~ hexagons)

2.2.3 Obtuse triangle

The above picture confirms the feasibility of the previous idea. So let's think about how to implement an obtuse triangle? It's not possible to follow the previous thinking, so we need to change our thinking.

我们可以用两个直角三角形,将小的直角三角形覆盖在大的上面,让我们试一下吧!!

<div id="main1"></div>
<div id="main2"></div>
Copy after login
#main1 {
  width: 0px;
  height: 0px;
  border-bottom: 200px solid red;
  border-left: 200px solid transparent;
}
#main2 {
  width: 0px;
  height: 0px;
  border-bottom: 200px solid black;
  border-left: 150px solid transparent;
  position: absolute;
  /*这里8px是浏览器中的margin自带的间距,之前没有处理*/
  top: 8px;
  left: 58px;
}
Copy after login

效果图如下所示:

CSS FAQ: How to draw polygons (triangles ~ hexagons)

这次通过绝对定位来控制小的直角三角形,那么我们可以通过控制黑色三角形的颜色来显示钝角三角形。

2.3 五边形

三角形都已经学会了,那么很多图形都可以通过三角形拼凑得来,就以五边形为例,这里将以多个三角形来画出五边形。

<div id="wrapper">
    <div class="main1 tool"></div>
    <div class="main2 tool"></div>
    <div class="main3 tool"></div>
    <div class="main4 tool"></div>
    <div class="main5 tool"></div>
</div>
Copy after login
*{
    margin: 0;
}
#wrapper {
    position: relative;
    top: 300px;
    margin-left: 300px;
}
.main2 {
    transform: rotate(72deg);
}
.main3 {
    transform: rotate(144deg);
}
.main4 {
    transform: rotate(216deg);
}
.main5 {
    transform: rotate(288deg);
}
.tool{
    width: 0px;
    height: 0px;
    border-right: 58px solid transparent;
    border-left: 58px solid transparent;
    border-bottom: 160px solid red;
    position: absolute;
    top: 0;
    left: 0;
}
Copy after login

效果如下图所示:

CSS FAQ: How to draw polygons (triangles ~ hexagons)

实现五边形的主要难点在于border的三个边的取值,以及旋转的角度。

2.4 六边形

到目前为止三角行、四、五边形的三种形式都实现了一遍,他们均是通过border来实现的,那么让我们来想一下怎么画出一个六边形,有条件的可以在纸上画画,我们可以把一个五边形分成6个等边三角形,让我们通过上面所学知识来实现一下六边形吧!

<div id="wrapper">
  <div class="main1 tool"></div>
  <div class="main2 tool"></div>
  <div class="main3 tool"></div>
  <div class="main4 tool"></div>
  <div class="main5 tool"></div>
  <div class="main6 tool"></div>
</div>
Copy after login
*{
  margin: 0;
}
#wrapper {
  position: relative;
  top: 300px;
  margin-left: 300px;
}
.main2 {
  transform: rotate(60deg);
}
.main3 {
  transform: rotate(120deg);
}
.main4 {
  transform: rotate(180deg);
}
.main5 {
  transform: rotate(240deg);
}
.main6 {
  transform: rotate(300deg);
}
.tool{
  width: 0px;
  height: 0px;
  border-right: calc(60px / 1.732) solid transparent;
  border-left: calc(60px / 1.732) solid transparent;
  border-bottom: 60px solid red;
  transform-origin: top;
  position: absolute;
  top: 0;
  left: 0;
}
Copy after login

1CSS FAQ: How to draw polygons (triangles ~ hexagons)

通过上面的方法实现五边形,这边难点主要是画出等边三角形。

上面的方法已经实现了,让我们想想其他的方法实现一下吧,这里我们将通过三个四边形实现五边形,让我们一下实验一下吧!!

<div id="wrapper">
  <div class="main1 tool"></div>
  <div class="main2 tool"></div>
  <div class="main3 tool"></div>
</div>
Copy after login
*{
    margin: 0;
}
#wrapper {
    position: relative;
    top: 300px;
    margin-left: 300px;
}
.main1 {
    width: calc(120px / 1.732);
    height: 120px;
    background-color: black;
}
.main2 {
    width: calc(120px / 1.732);
    height: 120px;
    transform: rotate(120deg);
    background-color: black;
}
.main3 {
    width: calc(120px / 1.732);
    height: 120px;
    transform: rotate(240deg);
    background-color: black;
}
.tool{
    position: absolute;
    top: 0;
    left: 0;
}
Copy after login

1CSS FAQ: How to draw polygons (triangles ~ hexagons)

好了,目前已经讲述了三角形,四边形,五边形,六边形得到实现方式了,更高的实现方式就以此类推了。

原文地址:https://juejin.cn/post/7001772184498601991

作者:执鸢者

更多编程相关知识,请访问:编程入门!!

The above is the detailed content of CSS FAQ: How to draw polygons (triangles ~ hexagons). For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:掘金--执鸢者
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template