Creating an Animated Counting Number using JavaScript Tutorial

In this tutorial, I will show you how to create a simple Animated Counting Number using JavaScript. The tutorial aims to provide students and new programmers with a reference for learning to build some useful components for websites. Here, a working sample web page source code scripts are provided which demonstrates how to achieve our goal for this tutorial.

How does the Animated Counting Number work?

Here, we will be creating a simple application web page that contains static content and the number containers. The numbers on the number container on the content will be animated. The animation is a simple counting number that updates the number from a lower number and ends with the original number. The counting animation will only allow decimals if the original number has decimals. The animation will only start when the number container we want to animate is visible on the page screen.

Animated Counting Number using JavaScript

How to create an Animated Counting number JavaScript?

Animated Counting Numbers can be achieved using some event listeners, built-in methods, APIs, and functions of JavaScript. It is not that complicated to build and can be made in just some short line of code. Check out the scripts below to have a better idea for creating a simple Animated Counting Number.

Example Web Page

Here are the scripts of the simple web application's web page that I created that demonstrates the creation of the Animated Counting Number using JavaScript.

Interface

Let's use the following static web page script. It is an HTML file script named index.html and contains some sample content and the number containers and text content that we will animate.

  1. <!DOCTYPE html>
  2. <html lang="en">
  3.     <meta charset="UTF-8">
  4.     <meta http-equiv="X-UA-Compatible" content="IE=edge">
  5.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6.     <title>JS - Animated Number Counter</title>
  7.     <link rel="preconnect" href="https://fonts.googleapis.com">
  8.     <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  9.     <link rel="stylesheet" href="style.css">
  10. </head>
  11.     <main>
  12.         <section>
  13.             <h1 class="text-center page-title"><b>Animated Number Counter</b></h1>
  14.             <hr width="50px">
  15.             <div class="flex-container">
  16.                 <div class="number-container">
  17.                     <span class="count-number">230,000.55</span>
  18.                 </div>
  19.                 <div class="number-container">
  20.                     <span class="count-number">2,000,000</span>
  21.                 </div>
  22.                
  23.                 <div class="number-container">
  24.                     <span class="count-number">59.77</span>
  25.                     <span>%</span>
  26.                 </div>
  27.             </div>
  28.             <br>
  29.             <p>Morbi id eros dictum, rhoncus lacus vitae, dignissim eros. Vestibulum finibus, orci sed bibendum fermentum, lorem neque tincidunt felis, id dignissim massa sem non erat. Nullam ultricies urna mollis lectus lobortis, eget elementum ex imperdiet. Mauris maximus ultricies arcu nec efficitur. Donec velit mi, vulputate convallis libero non, faucibus varius quam. Nam felis diam, iaculis ultricies quam quis, volutpat ornare risus. Curabitur blandit magna sed lorem sollicitudin, ac ornare velit luctus. Nullam tempus sagittis auctor. In faucibus elit sed imperdiet ultricies. Praesent eget purus massa. Phasellus odio nisl, faucibus vitae pharetra nec, vestibulum quis justo. Integer mattis mollis sapien eu egestas.</p>
  30.             <br>
  31.             <p>In non blandit urna, eget congue risus. Nulla aliquet ex a mi ultricies bibendum. Donec lobortis ullamcorper lacus sed bibendum. Aenean sagittis purus ut massa blandit, at posuere neque consectetur. Donec et varius nulla, non venenatis turpis. Cras tempor porttitor ex non convallis. Vivamus lobortis venenatis porttitor. Cras auctor lacus at magna euismod aliquet.</p>
  32.             <br>
  33.             <div class="flex-container">
  34.                 <div class="number-container">
  35.                     <span class="count-number">6,000</span>
  36.                 </div>
  37.                 <div class="number-container">
  38.                     <span class="count-number">80</span>
  39.                     <span>%</span>
  40.                 </div>
  41.             </div>
  42.             <br>
  43.             <p>Morbi id eros dictum, rhoncus lacus vitae, dignissim eros. Vestibulum finibus, orci sed bibendum fermentum, lorem neque tincidunt felis, id dignissim massa sem non erat. Nullam ultricies urna mollis lectus lobortis, eget elementum ex imperdiet. Mauris maximus ultricies arcu nec efficitur. Donec velit mi, vulputate convallis libero non, faucibus varius quam. Nam felis diam, iaculis ultricies quam quis, volutpat ornare risus. Curabitur blandit magna sed lorem sollicitudin, ac ornare velit luctus. Nullam tempus sagittis auctor. In faucibus elit sed imperdiet ultricies. Praesent eget purus massa. Phasellus odio nisl, faucibus vitae pharetra nec, vestibulum quis justo. Integer mattis mollis sapien eu egestas.</p>
  44.         </section>
  45.     </main>
  46.     <script src="script.js"></script>
  47. </body>
  48. </html>

Stylesheet

Here's the stylesheet script or CSS Script that I create for the simple design of the web application's web page. The script is named style.css and is loaded on the HTML file script.

  1. @import url('https://fonts.googleapis.com/css2?family=Rubik&display=swap');
  2. body *{
  3.     font-family: 'Rubik', sans-serif;
  4. }
  5. /**
  6. Page Design
  7. */
  8. body,
  9. html{
  10.     height: 100%;
  11.     width: 100%;
  12.     margin: 0;
  13.     padding: 0;
  14. }
  15. body{
  16.     background-color: #C0DEFF;
  17. }
  18. body *{
  19.     color: #484848;
  20. }
  21. main{
  22.     padding: 3em 15em;
  23. }
  24. section{
  25.     width:100%;
  26. }
  27. .text-center{
  28.     text-align: center;
  29. }
  30. .page-title{
  31.     color: #2e1d1d;
  32.     text-shadow: 1px 1px 3px #939292;
  33. }
  34. .flex-container{
  35.     display: flex;
  36.     width: 100%;
  37.     flex-wrap: wrap;
  38.     justify-content: center;
  39. }
  40. .number-container{
  41.     min-width: 150px;
  42.     min-height: 50px;
  43.     padding: 1em .5em;
  44.     display: flex;
  45.     align-items: center;
  46.     justify-content: center;
  47.     background-color: #FEFCF3;
  48.     border: 1px solid #dddddd;
  49.     box-shadow: 1px 1px 3px #2e1d1d;
  50.     margin: .5em 1em;
  51. }
  52. .number-container *{
  53.     font-size:20px;
  54.     font-weight: 600;
  55.     color:#fff;
  56.     text-shadow: 0px 0px 2px #0000007e;
  57. }
  58. .number-container * {
  59.     font-size: 20px;
  60.     font-weight: 600;
  61.     color: #404040;
  62.     text-shadow: 1px 1px 3px #789dc5;
  63. }
  64.    

The following Images are the sample number containers that we will animate using JavaScript.

Animated Counting Number using JavaScript

Animated Counting Number using JavaScript

JavaScript

Then, here is the JavaScript code that makes the animation functional. The animation will be triggered only when the number container element is the visible area of the page which means some of number animation might start on page load and some when the page is scrolled until the element will be visible.

  1. const NumberToCount = document.querySelectorAll('.count-number')
  2. /** Animation Duration */
  3. const countDuration = 1500
  4. /** Number Count Interval */
  5. const countInterval = 50
  6. /** Times the number text will change */
  7. const count= countDuration / countInterval
  8.  
  9. /** Formatting Number string before render*/
  10. const formatNum =function(number, maxDecimal){
  11.     return number.toLocaleString('en-US', {style:'decimal', minimumFractionDigits:maxDecimal, maximumFractionDigits:maxDecimal});
  12. }
  13.  
  14. /** Number Counting Animation Function */
  15. const countNumber = function(el, number){
  16.     /** Check first if the element is already done or started the animation */
  17.     if(!!el.dataset.is_count && el.dataset.is_count == "true")
  18.         return false
  19.  
  20.     /** Mark the element animation as started or done */
  21.     el.dataset.is_count = true
  22.    
  23.     //starting number of animation
  24.     var start = number / count;
  25.  
  26.     //Getting the Decimal
  27.     var decimal = String(number).split('.')
  28.     //Getting the Decimal length
  29.     var decLen = !!decimal[1] && decimal[1].length > 0 ? decimal[1].length : 0;
  30.     // Storing Current display number
  31.     var current = start;
  32.  
  33.     // Start Animation Interval
  34.     var countIntervalFunc = setInterval(()=>{
  35.         current = current + start
  36.         el.innerText = formatNum(current > number ? number : current, decLen)
  37.         if(current >= number){
  38.             // Stop interval if the original number has been reached
  39.             clearInterval(countIntervalFunc)
  40.         }
  41.     },countInterval)
  42. }
  43.  
  44. /** Animation Trigger Function */
  45. const screenScrollAnimate = function(el, number){
  46.     var screenHeight = window.innerHeight
  47.     var offset = window.scrollY
  48.     console.log(offset , offset + screenHeight, el.offsetTop)
  49.     if(el.offsetTop >=  offset && el.offsetTop <= (offset + screenHeight) ){
  50.         countNumber(el, number)
  51.     }
  52. }
  53.  
  54. /**
  55.     * Adding Number Counting Animation to all elements w/ this animation className
  56.     */
  57. NumberToCount.forEach(numContainer =>{
  58.     var _num = numContainer.innerText
  59.         _num = _num.replace(/\,/gi, '')
  60.         _num = parseFloat(_num)
  61.  
  62.     /** Event Listeners to trigger the animation */
  63.     window.addEventListener('load', screenScrollAnimate.bind(null, numContainer, _num))
  64.     window.addEventListener('resize', screenScrollAnimate.bind(null, numContainer, _num))
  65.     window.addEventListener('scroll', screenScrollAnimate.bind(null, numContainer, _num))
  66.        
  67. })

There you go! The provided script will result in something like the following.

Animated Counting Number using JavaScript

I have also provided the source code zip file on this website and it is free to download. The download button is located below this tutorial's content. Feel free to download and modify it to do some experiments to enhance your programming capabilities.

I hope this Creating an Animated Counting Number using JavaScript Tutorial will help you with what you are looking for and will be useful for your current and future web application projects.

Explore more on this website for more Tutorials and Free Source Codes.

Happy Coding =)

Add new comment