-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcount-up.html
executable file
·34 lines (34 loc) · 1.07 KB
/
count-up.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>count-up element</title>
<script type="text/javascript" src="count-up.js" defer="defer"></script>
<style type="text/css">
.box {
height: 1000px;
margin: 0 auto;
}
count-up {
display: block;
margin: 0 auto;
}
</style>
</head>
<body>
<div class="container">
<div class="box">
<count-up class="demo" data-min="7000" data-infinite="true" data-speed="1" data-step="9" data-max="10000">
<span class="counter"></span>
<span class="symbol">$</span>
</count-up>
</div>
<div class="box">
<count-up class="demo" data-min="7000" data-infinite="false" data-step="9" data-max="10000">
<span class="counter"></span>
<span class="symbol">$</span>
</count-up>
</div>
</div>
</body>
</html>