Created
December 16, 2024 18:17
-
-
Save hmowais/fe2474a560b76a2a59617f25b59fbf0b to your computer and use it in GitHub Desktop.
Counters for Webflow
This file contains 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
// assign class counter on text span | |
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script> | |
<script src='https://cdnjs.cloudflare.com/ajax/libs/waypoints/2.0.3/waypoints.min.js'></script> | |
<script src='https://cdn.jsdelivr.net/jquery.counterup/1.0/jquery.counterup.min.js'></script> | |
<script> | |
$('.counter').counterUp({ | |
delay: 10, | |
time: 1000 | |
}); | |
$('.counter').addClass('animated fadeIn'); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment