Created
January 28, 2017 04:43
-
-
Save morshedx/c59394b6f688ba4af886a7afa0959896 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Odometer</title> | |
<script src="https://raw.github.com/morr/jquery.appear/master/jquery.appear.js"></script> | |
<script src="https://raw.githubusercontent.com/HubSpot/odometer/master/odometer.min.js"></script> | |
</head> | |
<body> | |
<div class="counter"> | |
<div class="odometer" data-to="150">0</div> | |
</div> | |
<script> | |
$(".counter").appear(function() { | |
counter(); | |
}); | |
/*---------------------------------------- | |
Odometer Counter | |
------------------------------------------*/ | |
function counter() { | |
$(".odometer").each(function() { | |
$(this).text($(this).attr("data-to")); | |
}); | |
} | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment