Sorry, your browser cannot access this site
This page requires browser support (enable) JavaScript
Learn more >

Gray-Ice

个人博客兼个人网站

先看图吧。

那么先说一下具体逻辑,就是先弄一个正方形,然后弄两个直径等于这个正方形边长的圆形,之后一个圆的圆心放在与正方形左下角垂直的地方,一个圆的圆心放在与正方形右上角垂直的地方。
那么来看代码吧。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
*{
margin: 0;
padding: 0;
}

body{
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}

main{
background-color: red;
width: 200px;
height: 200px;
display: flex;
justify-content: center;
align-items: center;
position: relative;
transform: rotate(45deg);
}

main>div{
position: absolute;
border-radius: 50%;
width: 100%;
height: 100%;
background-color: red;
}

main>div:nth-of-type(1){
transform: translateX(-50%);
}

main>div:nth-of-type(2)
{
transform: translateY(-50%);
}
</style>
</head>
<body>
<main>
<div></div>
<div></div>
</main>
</body>
</html>

因为圆的直径等于正方形的任意一边的边长,所以移动圆心至与正方形某个角垂直的位置只需要移动圆的半径的内容,也就是百分之五十的正方形的任意一边的边长。移动完两个圆后再旋转正方形就OK了。
本篇完。

评论



愿火焰指引你