Skip to content

Countdown

<quiet-countdown> stable since 1.0

Displays a countdown until the specified date.

<quiet-countdown
  label="Feeding schedule"
  max-unit="hours"
  delimiter=":"
  style="font-size: 2.5rem;"
  id="countdown__overview"
></quiet-countdown>

<script>
  const countdown = document.getElementById('countdown__overview');

  // Two hours from now
  countdown.date = new Date(Date.now() + 2 * 60 * 60 * 1000);
</script>

If you pass a string to the date attribute, always use the ISO 8601 format . Otherwise, ambiguous dates such as 01/02/2000 can be parsed as January 2 or February 1 depending on the client's locale.

Examples Jump to heading

Providing dates Jump to heading

You must provide the date when the countdown ends. You can pass an ISO 8601-formatted date string, e.g. via Date.toISOString() to the date attribute.

<quiet-countdown date="2028-04-02T00:00:00.000Z"></quiet-countdown>

Alternatively, you can set the date property to a Date object using JavaScript.

const countdown = document.querySelector('quiet-countdown');

// Quick way to calculate seven days from now
countdown.date = new Date(Date.now() + 7 * 24 * 60 * 60 * 1000);

Adding a label Jump to heading

Use the label attribute to give the countdown an accessible label. This won't be displayed on the screen, but it will be announced by assistive devices.

<quiet-countdown
  label="Rest timer"
  date="2025-04-05 09:00:00"
  max-unit="hours"
  id="countdown__label"
></quiet-countdown>

<script>
  const countdown = document.getElementById('countdown__label');
  
  // 45 minutes from now
  countdown.date = new Date(Date.now() + 45 * 60 * 1000);
</script>

Min and max units Jump to heading

Use the min-unit and max-unit attributes to control the smallest and largest units that will be displayed. Remaining time will be rolled over to the highest visible unit, e.g. two days will show as 48 hours when max-unit="hours".

<quiet-countdown
  label="Play session"
  date="2025-04-05 09:00:00"
  min-unit="minutes"
  max-unit="hours"
  id="countdown__min-max"
></quiet-countdown>

<script>
  const countdown = document.getElementById('countdown__min-max');
  
  // 3 hours and 30 minutes from now
  countdown.date = new Date(Date.now() + 3 * 60 * 60 * 1000 + 30 * 60 * 1000);
</script>

Changing the size Jump to heading

Countdowns are sized relative to the current font size. To change the size, set the font-size property on the countdown or an ancestor element.

<quiet-countdown
  label="Appointment"
  date="2025-04-03 14:20:00"
  max-unit="minutes"
  style="font-size: 3rem;"
  id="countdown__size"
></quiet-countdown>

<script>
  const countdown = document.getElementById('countdown__size');
  
  // 20 minutes from now
  countdown.date = new Date(Date.now() + 20 * 60 * 1000);
</script>

Changing unit labels Jump to heading

The default unit labels are localized using Intl.DisplayNames . To show custom labels, provide your own using the appropriate slots.

H M S
<quiet-countdown
  label="Delivery estimate"
  date="2025-04-03 14:40:00"
  max-unit="hours"
  id="countdown__unit-labels"
>
  <span slot="hours">H</span>
  <span slot="minutes">M</span>
  <span slot="seconds">S</span>
</quiet-countdown>

<script>
  const countdown = document.getElementById('countdown__unit-labels');
  
  // 1 hour and 15 minutes from now
  countdown.date = new Date(Date.now() + 1 * 60 * 60 * 1000 + 15 * 60 * 1000);
</script>

Setting a delimiter Jump to heading

Use the delimiter attribute to add a character such as : between each unit.

<quiet-countdown
  label="Litter box reminder"
  date="2025-04-04 12:40:00"
  max-unit="hours"
  delimiter=":"
  id="countdown__delimiter"
></quiet-countdown>

<script>
  const countdown = document.getElementById('countdown__delimiter');
  
  // 30 minutes from now
  countdown.date = new Date(Date.now() + 30 * 60 * 1000);
</script>

Starting and resuming Jump to heading

Use the start() and stop() methods to control the countdown. When calling start(), the countdown will restart based on the existing date, which may not be desirable. To resume the countdown from the time currently shown, call start({ resume: true }). In this case, the date property will be adjusted to account for the pause.



Pause
<div id="countdown__starting">
  <quiet-countdown
    label="Treat time"
    date="2025-04-04 12:40:00"
    max-unit="hours"
  ></quiet-countdown>

  <br><br>

  <quiet-button toggle="off">Pause</quiet-button>
</div>

<script>
  const container = document.getElementById('countdown__starting');
  const countdown = container.querySelector('quiet-countdown');
  const button = container.querySelector('quiet-button');

  // 25 minutes from now
  countdown.date = new Date(Date.now() + 25 * 60 * 1000);

  button.addEventListener('click', () => {
    if (button.toggle === 'on') {
      countdown.stop();
    } else {
      countdown.start({ resume: true });
    }
  });
</script>

Localizing values Jump to heading

You can set the lang attribute on the countdown to localize the value. Use grouping and valueFormatter for additional control over formatting.

<quiet-countdown
  lang="de"
  label="Trainingseinheit"
  date="2025-04-04 12:40:00"
  max-unit="hours"
  id="countdown__localizing"
></quiet-countdown>

<script>
  const countdown = document.getElementById('countdown__localizing');
  
  // 4 hours from now
  countdown.date = new Date(Date.now() + 4 * 60 * 60 * 1000);
</script>

Styling countdowns Jump to heading

Countdowns come with a simple, minimal appearance. Feel free to customize them with your own styles. This one is inspired by Rocket Blaster .

HR MIN SEC
<quiet-countdown
  label="It's the final countdown 🎶"
  date="2025-04-03 14:40:00"
  max-unit="hours"
  delimiter=":"
  id="countdown__styling"
>
  <span slot="hours">HR</span>
  <span slot="minutes">MIN</span>
  <span slot="seconds">SEC</span>
</quiet-countdown>

<script>
  const countdown = document.getElementById('countdown__styling');
  
  // 1 hour from now
  countdown.date = new Date(Date.now() + 2 * 60 * 60 * 1000);
</script>

<style>
  #countdown__styling {
    font-family: Orbitron, sans-serif;
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 0.125em;
    color: white;
    text-shadow: 0 -2px 0 #0001;
    border-radius: 3rem;
    background-image: linear-gradient(
      135deg,
      #1a1a2e 0%,
      #16213e 50%,
      #0f3460 100%
    );
    padding: 2rem;

    &::part(unit) {
      width: 2ch;
    }

    &::part(label) {
      font-size: 1.25rem;
      font-weight: 400;
      color: #4cc9f0;
      text-shadow: none;
    }

    &::part(delimiter) {
      color: #f52385;
      margin-inline: -0.25em;
      opacity: 0.8;
    }

    @media screen and (max-width: 768px) {
      font-size: 2rem;
    }
  }
</style>

API Jump to heading

Importing Jump to heading

The autoloader is the recommended way to import components but, if you prefer to do it manually, the following code snippets will be helpful.

CDN npm

To manually import <quiet-countdown> from the CDN, use the following code.

import 'https://cdn.jsdelivr.net/npm/@quietui/quiet-browser@1.0.0/dist/components/countdown/countdown.js';

To manually import <quiet-countdown> from npm, use the following code.

import '@quietui/quiet/dist/components/countdown/countdown.js';

Slots Jump to heading

Countdown supports the following slots. Learn more about using slots

Name Description
seconds A custom label to show for seconds.
minutes A custom label to show for minutes.
hours A custom label to show for hours.
days A custom label to show for days.
months A custom label to show for months.
years A custom label to show for years.

Properties Jump to heading

Countdown has the following properties that can be set with corresponding attributes. In many cases, the attribute's name is the same as the property's name. If an attribute is different, it will be displayed after the property. Learn more about attributes and properties

Property / Attribute Description Reflects Type Default
label An accessible label for the countdown. This won't be shown, but it will be read to assistive devices so you should always include one. string ''
date The date in the future at which the countdown will end. If an attribute is passed, the date should be an ISO 8601 string . If set as a property, a Date object can be used instead. Date
string
delimiter A visual delimiter to show between units. string ''
minUnit
min-unit
The smallest unit to display in the countdown. 'seconds'
'minutes'
'hours'
'days'
'months'
'years'
'seconds'
maxUnit
max-unit
The largest unit to display in the countdown. 'seconds'
'minutes'
'hours'
'days'
'months'
'years'
'days'
grouping Whether to group numbers, e.g. with a thousands separator. 'always'
'never'
'auto'
'min2'
'auto'
valueFormatter A custom formatting function to apply to the number. When set, decimal-places and grouping will be ignored. Property only. (value: number) => string

Methods Jump to heading

Countdown supports the following methods. You can obtain a reference to the element and call them like functions in JavaScript. Learn more about methods

Name Description Arguments
start() Starts or resumes the countdown timer after validating dates. options: { resume?: boolean }
stop() Stops the countdown timer and records the time it was stopped.

Events Jump to heading

Countdown dispatches the following custom events. You can listen to them the same way was native events. Learn more about custom events

Name Description
quiet-finished Dispatched when the countdown finishes.
quiet-tick Dispatched every time the visible countdown changes. For example, if the timer displays seconds, this will be once every second; if min-unit is minutes, it will be once every minute; and so on.

CSS parts Jump to heading

Countdown exposes internal elements that can be styled with CSS using the selectors shown below. Learn more about CSS parts

Name Description CSS selector
unit The container that holds each unit, including its values and labels. ::part(unit)
value The value of each unit. ::part(value)
label The label of each unit. ::part(label)
delimiter The delimiters between units. ::part(delimiter)

Custom States Jump to heading

Countdown has the following custom states. You can target them with CSS using the selectors shown below. Learn more about custom states

Name Description CSS selector
active Applied when the countdown is actively counting down. :state(active)
Search this website Toggle dark mode Get the code on GitHub Follow @quietui.org on Bluesky Follow @quiet_ui on X

    No results found