-
Notifications
You must be signed in to change notification settings - Fork 0
/
02_山的绘制.html
52 lines (51 loc) · 1.04 KB
/
02_山的绘制.html
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
<!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>
html, body {
width: 100%;
height: 100%;
background-color: #2e2e2e;
display: grid;
place-items: center;
}
div{
width: 400px;
height: 400px;
background-color: #fff1c1;
border-radius: 50%;
position: relative;
overflow: hidden;
}
div::before {
content: '';
position: absolute;
top: 80px;
left: 80px;
width: 80px;
border-radius: 50%;
aspect-ratio: 1;
background-color: #fe5f55;
}
div::after {
content: '';
position: absolute;
top: 160px;
left: 150px;
width: 300px;
aspect-ratio: 1;
color: #fe5f55;
background-color: currentColor;
transform: rotate(45deg);
box-shadow: -90px 240px;
}
</style>
</head>
<body>
<div></div>
</body>
</html>