-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcounter.html
44 lines (42 loc) · 1.39 KB
/
counter.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Counter Up Plugin</title>
<link rel="stylesheet" href="css/fontawesome.min.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="container">
<div class="counter-area">
<div class="counter-item">
<i class="fas fa-users"></i>
<h4> <span class="counter">50</span> clients</h4>
</div>
<div class="counter-item">
<i class="fas fa-file"></i>
<h4> <span class="counter">240</span> projects</h4>
</div>
<div class="counter-item">
<i class="fas fa-code"></i>
<h4> <span class="counter">50,000</span> line of codes</h4>
</div>
<div class="counter-item">
<i class="fas fa-coffee"></i>
<h4> <span class="counter">500</span> cup of coffes</h4>
</div>
</div>
</div>
<script src="js/jquery.min.js"></script>
<script src="js/jquery.counterup.min.js"></script>
<script src="js/waypoints.min.js"></script>
<script>
$('.counter').counterUp({
delay: 10,
time: 1000
});
</script>
</body>
</html>