-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
Copy pathcirc.html
90 lines (84 loc) · 2.05 KB
/
circ.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>CSS Circular Progress Bar</title>
<style>
body {
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #f5f5f5;
font-family: Arial, sans-serif;
}
.progress-circle {
width: 150px;
height: 150px;
position: relative;
}
.circle {
width: 100%;
height: 100%;
background: #e6e6e6;
border-radius: 50%;
position: relative;
display: flex;
justify-content: center;
align-items: center;
overflow: hidden;
}
.mask {
width: 100%;
height: 100%;
position: absolute;
clip: rect(0, 150px, 150px, 75px); /* Clip the circle in half */
}
.fill {
width: 100%;
height: 100%;
background: #4caf50;
border-radius: 50%;
position: absolute;
clip: rect(0, 75px, 150px, 0);
transform: rotate(0deg);
animation: rotateFill 2s linear infinite;
}
.inside-circle {
width: 120px;
height: 120px;
background: #fff;
border-radius: 50%;
position: absolute;
z-index: 1;
display: flex;
justify-content: center;
align-items: center;
font-size: 1.5em;
font-weight: bold;
color: #333;
}
@keyframes rotateFill {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
</style>
</head>
<body>
<div class="progress-circle">
<div class="circle">
<div class="mask">
<div class="fill"></div>
</div>
<div class="inside-circle">70%</div>
</div>
</div>
</body>
</html>