-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path03_铃铛.html
More file actions
63 lines (58 loc) · 1.28 KB
/
03_铃铛.html
File metadata and controls
63 lines (58 loc) · 1.28 KB
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
57
58
59
60
61
62
63
<!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%;
display: grid;
place-items: center;
background-color: #2e2e2e;
/* 法一: */
/* z-index: -1; */
}
div{
width: 120px;
height: 120px;
background-color: #e08027;
position: relative;
border-radius: 60px 60px 10px 10px;
/* 法二: */
transform-style: preserve-3d;
text-align: center;
/* grid-row: 2; */
line-height: 127px;
font-size: 65px;
color: rgb(2, 99, 28);
}
div::before {
content: '';
width: 50px;
height: 50px;
border-radius: 50%;
position: absolute;
top: -25px;
left: 35px;
background-color: #f2ad43;
/* 铃铛 */
box-shadow: 0 120px #824b20;
/* 灯泡 */
/* 灯泡 增加光晕*/
/* box-shadow: 0 120px #824b20, 0 120px 40px #824b20; */
/* 法一: */
/* z-index: -1; */
/* 法二: */
transform: translateZ(-0.1px);
}
</style>
</head>
<body>
<div>
鈴
</div>
</body>
</html>