"Progress Bar"
Bootstrap 4.1.1 Snippet by siberci

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<!DOCTYPE html>
<html>
<head>
<title>Progress Bar</title>
<link rel="stylesheet" href="codescaptain.css">
</head>
<body>
<div class="kutu">
<div class="bar-dis">
<div class="bar">
</div>
</div>
</div>
</body>
</html>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
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
body{
margin: 0;
padding: 0;
background:#fbc531;
}
.kutu{
position: absolute;
top:50%;
left: 50%;
transform: translate(-50%,-50%);
}
.bar-dis{
width: 250px;
height: 50px;
background: #dcdde1;
border-radius: 20px;
border:solid #000 4px;
box-shadow: 2px 2px 3px #000 inset;
overflow: hidden;
}
.bar{
height: 100%;
background: #4cd137;
animation:samet 10s ease;
animation-iteration-count: 1;
}
@keyframes samet{
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: