"Untitled"
Bootstrap 4.1.1 Snippet by krunb

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
<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 ---------->
<div class="container">
<div class="row">
<div class="col-lg-3 col-sm-6">
<div class="counter-box">
<div class="box-content">
<h2 class="count">423</h2>
<p class="title">Projects</p>
</div>
</div>
</div>
<div class="col-lg-3 col-sm-6">
<div class="counter-box">
<div class="box-content">
<h2 class="count">9</h2>
<p class="title">Years experts</p>
</div>
</div>
</div>
<div class="col-lg-3 col-sm-6">
<div class="counter-box">
<div class="box-content">
<h2 class="count">50</h2>
<p class="title">Clients</p>
</div>
</div>
</div>
<div class="col-lg-3 col-sm-6">
<div class="counter-box">
<div class="box-content">
<h2 class="count">16587</h2>
<p class="title">Image</p>
</div>
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
.row{
padding: 3rem 0;
}
.counter-box{
text-align: center;
position: relative;
}
.counter-box .box-content{
position: relative;
padding: 1.5rem 3rem;
}
.counter-box:before,
.counter-box:after{
content: "";
width: 50px;
height: 50px;
position: absolute;
opacity: 1;
transition: all 0.6s ease 0.3s;
}
.counter-box:before{
border-bottom: 10px solid #040404;
border-left: 10px solid #040404;
bottom: 0px;
left: 0px;
}
.counter-box:after{
border-bottom: 10px solid #040404;
border-right: 10px solid #040404;
bottom: 0px;
right: 0px;
}
.counter-box:hover:before,
.counter-box:hover:after{
width: 50%;
height: 50%;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: