blob: b60ccca0a8d9e1d395a554bc27fdc63ee384e49d (
plain)
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
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title></title>
<style>
#mask {
clip-path: circle(50%);
width: 100px;
height: 100px;
opacity: 0.5;
}
#content {
width: 100px;
height: 100px;
background-color: green;
}
</style>
</head>
<body>
<div id="mask">
<div id="content"></div>
</div>
</body>
</html>
|