"Funfact Counter"
Bootstrap 3.3.0 Snippet by bootstrapthemes

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/3.3.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/js/bootstrap.min.js"></script>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<!-- Add this css in head tag -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.0/css/font-awesome.min.css">
<!-- Here is the section -->
<section id="counter" class="counter">
<div class="main_counter_area">
<div class="overlay p-y-3">
<div class="container">
<div class="row">
<div class="main_counter_content text-center white-text wow fadeInUp">
<div class="col-md-3">
<div class="single_counter p-y-2 m-t-1">
<i class="fa fa-heart m-b-1"></i>
<h2 class="statistic-counter">100</h2>
<p>Love Our Team</p>
</div>
</div>
<div class="col-md-3">
<div class="single_counter p-y-2 m-t-1">
<i class="fa fa-check m-b-1"></i>
<h2 class="statistic-counter">400</h2>
<p>Check Our</p>
</div>
</div>
<div class="col-md-3">
<div class="single_counter p-y-2 m-t-1">
<i class="fa fa-refresh m-b-1"></i>
<h2 class="statistic-counter">312</h2>
<p>repeat client</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
body{
font-size:18px;
font-weight: 400;
}
.p-y-2 {
padding-top: 28px;
padding-bottom: 28px;
}
.p-y-3 {
padding-top: 45px;
padding-bottom: 45px;
}
.m-b-1 {
margin-bottom: 18px;
}
.m-t-1 {
margin-top: 18px;
}
/*==========================================================
counter section style
============================================================*/
.main_counter_area{
background: url(https://images.pexels.com/photos/196288/pexels-photo-196288.jpeg?w=940&h=650&auto=compress&cs=tinysrgb) no-repeat top center;
background-size: cover;
overflow: hidden;
}
.main_counter_area .main_counter_content .single_counter{
background: rgba(236, 72, 72, 0.5);
color: #fff;
}
.main_counter_area .main_counter_content .single_counter i{
font-size:36px;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
// Counter
jQuery('.statistic-counter').counterUp({
delay: 10,
time: 2000
});
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments:

superb..
but.. this one not counting in my work !!

can u give me some solutions ?

safvan () - 8 years ago - Reply 0