-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
36 lines (36 loc) · 917 Bytes
/
index.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
<!DOCTYPE html>
<html lang="zh-cn">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
</head>
<body>
<style>
.coupon {
width: 240px;
height: 100px;
background-image: radial-gradient(
circle at 8px 8px,
transparent 0%,
transparent 8px,
#e15852 8px,
#e15852 100%
);
background-position: 66px -8px;
background-size: 100% 100%;
filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.5));
border-radius: 10px;
}
.triangle {
width: 0;
height: 0;
border-left: 50px solid transparent;
border-right: 50px solid transparent;
border-bottom: 100px solid blue;
}
</style>
<div class="coupon"></div>
<div class="triangle"></div>
</body>
</html>