Create a CSS/JS Countdown Timer

栏目: IT技术 · 发布时间: 4年前

内容简介:I was watching Disney+ the other day (Mandalorian rocks!) and I saw a neat UI for auto advancing a user to the next episode. It was a button with a countdown.I thought "Can we make that in CSS?!" Let's go ahead and make it!Here is our countdown timer. You

I was watching Disney+ the other day (Mandalorian rocks!) and I saw a neat UI for auto advancing a user to the next episode. It was a button with a countdown.

Table of Contents

I thought "Can we make that in CSS?!" Let's go ahead and make it!

Here is our countdown timer. You can use this for a number of things. Advancing a user through your UI is the main idea here.

Create a CSS/JS Countdown Timer

Final CodePen: https://codepen.io/chrisoncode/pen/JjdPyer?editors=1000

The Technique

We'll be letting CSS handle the animations since CSS animations are far more performant in browsers than letting JavaScript handle the animation. The steps for creating our countdown timer look like:

  1. Create a stack of numbers
  2. Create a JavaScript interval for every second
  3. Move the stack of numbers using CSS transforms

Create a CSS/JS Countdown Timer

Essential Reading : Learn React from Scratch! (2020 Edition)

Let's start with all of our HTML. We need two buttons along with all the numbers from 10-0.

<div>
  <button>
    <span></span>
    Next Episode Starts in
    <span>
      10
      <span>
        <span>10</span>
        <span>9</span>
        <span>8</span>
        <span>7</span>
        <span>6</span>
        <span>5</span>
        <span>4</span>
        <span>3</span>
        <span>2</span>
        <span>1</span>
        <span>0</span>
      </span>
    </span>
  </button>

  <button>Reset</button>
</div>

We have added the icon with an emoji. We also have a countdown which will contain our numbers .

The reason we have the countdown div is so that we can place a 10 in there. This 10 will be responsible for providing some space in our UI for our numbers . It will have space in the document flow .

We are going to have to position our numbers absolutely, which will take them out of the document flow .

Let's start our CSS.

Base Styles

We have some basic styling for our buttons so that they look good:

/_ button styles are here _/
button {
  background: white;
  border-radius: 5px;
  border: none;
  padding: 15px 30px;
  font-size: 24px;
  font-family: 'Muli';
  display: block;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: 0.3s ease all;
  line-height: 1;
  display: flex;
}

button:hover {
  background: #eee;
}

.icon {
  margin-right: 8px;
}

.reset {
  font-size: 12px;
  padding: 8px 16px;
  margin: 100px auto 0;
}

Now we'll have some good looking buttons. The next step is to start positioning our numbers so that they show up in a column.

Custom Font

We've found a custom font from fonts.google.com and added the link to our CodePen settings:

https://fonts.googleapis.com/css?family=Muli&display=swap

https://i.imgur.com/Q7Kt4P7.png\]\ ( https://i.imgur.com/Q7Kt4P7.png

Positioning the Countdown and Numbers

Add the following to our CSS.

.countdown {
  position: relative;
  display: block;
  text-indent: -9999px;
  overflow: hidden;
  margin-left: 6px;
}

.numbers {
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  transition: 0.3s ease transform;
  text-indent: 0;
}

We have our countdown area set to overflow: hidden so that any numbers outside of its view are not seen. All we see is one number now.

Take a look at what this looks like behind the scenes without overflow: hidden :

Create a CSS/JS Countdown Timer

With overflow: hidden , all of our extra numbers are hidden from view:

Create a CSS/JS Countdown Timer

Let's move onto our JavaScript.

This is where the work comes in to start moving our numbers every second.

Creating Variables

Let's start by grabbing everything we need from our DOM and creating our variables.

// grab parts of our HTML
const countdownArea = document.querySelector('.countdown');
const numbersArea = document.querySelector('.numbers');
const resetBtn = document.querySelector('.reset');

// create an interval and counter
let interval;
let count = 0;

// calculate the height of our numbers
const height = countdownArea.getBoundingClientRect().height;

Creating a Timer

Next up, we'll create a function to create a timer. The things we need to do are:

  1. Increment our count
  2. Use the count and the height to figure out how far to offset the list of numbers
  3. Apply that new offset to the numbers section with CSS transforms
  4. Make sure to stop the interval once we reach 10
// create the interval that creates the timer
function createTimer() {
  interval = setInterval(() => {

        // 1. increment our count
    count++;

    // 2. calculate the offset and apply it
    const offset = height * count;

        // 3. apply the offset using css transforms
    numbersArea.style.transform = `translateY(-${offset}px)`

    // 4. stop the interval at 10
    if (count >= 10) {
      // go to the next episode
      clearInterval(interval);
    }
  }, 1000);
}

The last part is to actually call our new function. Add the following and our timer should start working!

createTimer();

Adding the Reset

The last part is to add the reset. We'll use the reset button we grabbed earlier:

resetBtn.addEventListener('click', createTimer);

We have to add three lines to our createTimer function to reset everything:

function createTimer() {
  clearInterval(interval);
  count = 0;
  numbersArea.style.transform = 'translateY(0)'

    // other code goes here...
    // interval = setInterval(() => {...
}

That's it! We now have our button!

Create a CSS/JS Countdown Timer

Using some CSS and vanilla JavaScript, we were able to create a button that has a cool effect and gives users a little more interaction.

Be sure to check out the video walkthrough and the final CodePen . Thanks for reading!

Like this article? Follow @chrisoncode on Twitter


以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

个体与交互

个体与交互

Ken Howard、Barry Rogers / 贾永娜、张凯峰 / 机械工业出版社华章公司 / 2012-3-20 / 45.00元

对敏捷软件开发的关注重点,通常都集中在“机制”方面,即过程和工具。“敏捷宣言”认为,个体与交互的价值要高于过程和工具,但这一点很容易被遗忘。在敏捷开发中,如果你重新将注意力放在人的方面,将会收获巨大利益。 本书展示了如何解决敏捷团队在实际项目中遭遇的问题。同时,本书也是很有实用价值的敏捷用户指南,其中包含的故事、最佳实践方法、经验以及技巧均可应用到实际项目当中。通过逐步实践,你将学会如何让团......一起来看看 《个体与交互》 这本书的介绍吧!

RGB转16进制工具
RGB转16进制工具

RGB HEX 互转工具

随机密码生成器
随机密码生成器

多种字符组合密码

HEX CMYK 转换工具
HEX CMYK 转换工具

HEX CMYK 互转工具