Skip to content

Getting Started

Note

TimeredCounter currently has two optional dependencies. Considering their large size, they are not installed by default. You can manually install them as needed.

  • decimal.js: Decimal.js provides almost unlimited precision for handling large numbers/high-precision floating-point calculations. How to use ->
  • grapheme-splitter: grapheme-splitter can correctly split strings containing emojis. How to use ->

In each usage method below, we will provide instructions on how to install these two dependencies.

Import via CDN

You can use TimeredCounter directly via CDN with the <script> tag:

html
<script src="https://cdn.jsdelivr.net/npm/timered-counter/dist/timered-counter.global.js"></script>

Here we use jsdelivr, but you can also use any CDN that provides npm packages, such as unpkg or cdnjs. Of course, you can also download this file and serve it yourself.

Using TimeredCounter via CDN does not involve a "build step". This makes setup simpler and can be used to enhance static HTML.

Using Global Build Version

The above link uses the global build version of TimeredCounter, where all top-level APIs are exposed as properties on the global TimeredCounter object. Here is an example of using the global build version:

html
...
<script src="https://cdn.jsdelivr.net/npm/timered-counter/dist/timered-counter.global.js"></script>

<div style="font-size: 36px; text-align: center;">
  <timered-counter-string value="123456789" initial-value="0"></timered-counter-string>
</div>

Optional Dependencies

Add decimal.js Number Adapter

If you need to use the decimal.js based number adapter, please add the following <script> tag first:

html
<script src="https://cdn.jsdelivr.net/npm/timered-counter/dist/decimal-js-number-adapter.global.js"></script>

Then import it in your code:

javascript
TimeredCounter.TimeredCounterAdapter.registryAdapter(TimeredCounterExternal.DecimalJsNumberAdapter); // Register adapter
TimeredCounter.TimeredCounterAdapter.setNumberAdapter('decimal.js'); // Set the adapter to use
Add grapheme-splitter String Adapter

If you need to use the grapheme-splitter based string adapter, please add the following <script> tag first:

html
<script src="https://cdn.jsdelivr.net/npm/timered-counter/dist/grapheme-splitter-string-adapter.global.js"></script>

Then import it in your code:

javascript
TimeredCounter.TimeredCounterAdapter.registryAdapter(TimeredCounterExternal.GraphemeSplitterAdapter); // Register adapter
TimeredCounter.TimeredCounterAdapter.setStringAdapter('grapheme-splitter'); // Set the adapter to use
File Size
File Namerawgzipbrotlideflate
timered-counter.global.js68.93 kB19.9 kB17.63 kB19.89 kB
decimal-js-number-adapter.global.js33.1 kB13.4 kB11.69 kB13.39 kB
grapheme-splitter-string-adapter.global.js23.87 kB7.8 kB4.92 kB7.79 kB

Using ES Module Build Version

In the rest of this document, we mainly use ES module syntax. Most modern browsers natively support ES modules. Therefore, we can use TimeredCounter via CDN and native ES modules like this:

html
...
<script type="module" src="https://cdn.jsdelivr.net/npm/timered-counter/dist/timered-counter.esm-browser.js"></script>

<div id="demo" style="font-size: 36px; text-align: center;">
  <timered-counter-string value="123456789" initial-value="0"></timered-counter-string>
</div>

Note that we use <script type="module">, and the imported CDN URL points to the ES module build version of TimeredCounter.

Optional Dependencies

Add decimal.js Number Adapter

If you need to use the decimal.js based number adapter, please modify the code as follows:

html
<script src="https://cdn.jsdelivr.net/npm/timered-counter/dist/decimal-js-number-adapter.esm-browser.js"></script> 

<script type="module">
  import { TimeredCounterAdapter } from 'https://cdn.jsdelivr.net/npm/timered-counter/dist/timered-counter.esm-browser.js'; 
  import DecimalJsNumberAdapter from 'https://cdn.jsdelivr.net/npm/timered-counter/dist/decimal-js-number-adapter.esm-browser.js'; 
  TimeredCounterAdapter.registryAdapter(DecimalJsNumberAdapter); 
  TimeredCounterAdapter.setNumberAdapter('decimal.js'); 
</script>
Add grapheme-splitter String Adapter

If you need to use the grapheme-splitter based string adapter, please modify the code as follows:

html
<script src="https://cdn.jsdelivr.net/npm/timered-counter/dist/decimal-js-number-adapter.esm-browser.js"></script> 

<script type="module">
  import { TimeredCounterAdapter } from 'https://cdn.jsdelivr.net/npm/timered-counter/dist/timered-counter.esm-browser.js'; 
  import GraphemeSplitterStringAdapter from 'https://cdn.jsdelivr.net/npm/timered-counter/dist/grapheme-splitter-string-adapter.esm-browser.js'; 
  TimeredCounterAdapter.registryAdapter(GraphemeSplitterStringAdapter); 
  TimeredCounterAdapter.setStringAdapter('grapheme-splitter'); 
</script>
File Size
File Namerawgzipbrotlideflate
timered-counter.esm-browser.js67.51 kB19.79 kB17.56 kB19.78 kB
decimal-js-number-adapter.esm-browser.js32.74 kB13.29 kB11.58 kB13.28 kB
grapheme-splitter-string-adapter.esm-browser.js23.51 kB7.66 kB4.76 kB7.65 kB

Import via Module

Installation

shell
$ npm install timered-counter --save
shell
$ pnpm add timered-counter
shell
$ yarn add timered-counter

Import

javascript
import "timered-counter";

Optional Dependencies

Install decimal.js Number Adapter

If you need to use the decimal.js based number adapter, please install it first:

shell
npm install decimal.js --save

Then import it in your code:

javascript
import DecimalJsAdapter from "timered-counter/dist/src/number-adapter/decimal.js";
import { TimeredCounterAdapter } from "timered-counter";

TimeredCounterAdapter.registryAdapter(DecimalJsAdapter); // Register adapter
TimeredCounterAdapter.setNumberAdapter('decimal.js'); // Set the adapter to use
Install grapheme-splitter String Adapter

If you need to use the grapheme-splitter based string adapter, please install it first:

shell
npm install grapheme-splitter --save

Then import it in your code:

javascript
import GraphemeSplitterAdapter from "timered-counter/dist/src/string-adapter/grapheme-splitter.js";
import { TimeredCounterAdapter } from "timered-counter";

TimeredCounterAdapter.registryAdapter(GraphemeSplitterAdapter); // Register adapter
TimeredCounterAdapter.setStringAdapter('grapheme-splitter'); // Set the adapter to use

Usage

You only need to update the value, and TimeredCounter will handle the rest automatically.

`TimeredCounter` is like this, you just need to update the value, but `TimeredCounter` has to consider a lot of things. XD

Below is a simple example where TimeredCounter will automatically respond to changes in the number and handle the increment/decrement animation.

Getting StartedCodeSandbox Logo


html
<timered-counter-number
  id="counter"
  class="font-mono font-bold self-center"
/>
js
let userCount = 1000;
const counter = document.getElementById('counter');
setInterval(() => {
  userCount += Math.floor(Math.random() * 10);
  counter.value = userCount;
}, 1100);
vue
<script setup lang="ts">
import { onMounted } from "vue";
onMounted(() => {
// #region js
  let userCount = 1000;
  const counter = document.getElementById('counter');
  setInterval(() => {
    userCount += Math.floor(Math.random() * 10);
    counter.value = userCount;
  }, 1100);
// #endregion js
});
</script>

<template>
<!-- #region html -->
  <timered-counter-number
    id="counter"
    class="font-mono font-bold self-center"
  />
<!-- #endregion html -->
</template>

<style scoped></style>

Next

  • Want to see more examples of TimeredCounter? Check out Examples.
  • Want to learn about TimeredCounter configuration parameters? Check out Configuration and API.
  • Want to explore more possibilities of TimeredCounter styles and animations, such as achieving this effect? You can start from In-depth TimeredCounter.