DEV Community

Nicole Zonnenberg
Nicole Zonnenberg

Posted on • Updated on

Making An Animated Timer With CSS & JavaScript

With my time at General Assembly rapidly coming to an end, there is less direct instruction and more encouraging us to play in the huge sandbox that is web development. Recently, an entire day was dedicated to us teaching ourselves either the beginnings of another language or skill not covered by GA's curriculum.

I chose to create a JavaScript Timer with CSS animations.

Why did I choose this subject?

I have an idea for my capstone project that would be greatly enhanced visually by CSS Animation triggered via JavaScript.

What problem does it solve? / Why does one use it?

It doesn't so much solve a problem but has the potential to make an existing project more aesthetically pleasing to the user.

Being visually pleasing makes user interface easier to understand and navigate as well as easier to sell to potential buys or users.

What are the alternatives?

I would have little to no styling or a static webpage where the only moving part is the JavaScript timer, which can look fairly unappealing or boring.

Teaching Myself

Step One - Making the timer.

Luckily the internet--in its vast wealth of information--has many examples of JavaScript timers. I used one from w3schools and modified it to my specifications (counting down from 1 minute).

Note: I also had it restart at 1 minute after the timer reached 0 in order to make sure the animation worked more than once in a page load.

Step Two - Add basic CSS styling.

Determine what a static version of my countdown timer will look like and define any necessary classes. (This was easy enough.)

Step Three - Learn About Animation.

Animation vs. Transition

A transition is applied to an element and specifies a change that happens gradually over a period of time.

An animation just runs in the background regardless of anything else happening via the user or the rest of the website.

At this point I realized that the title of this whole project (Making An Animated Timer With CSS & JavaScript) is a lie. What I am actually making is a Transitional Timer with CSS & JavaScript.

Step Four - Add animation independent of JS

I was able to add a div that would shrink over the course of a designated time in the CSS code.

.visual-timer {
    border-top: 50px solid #004D00;
    margin: 5% auto;
    width: 50%;
}

.width-change {
    /* Animation code */
    -webkit-animation-name: widthChange; /* Safari 4.0 - 8.0 */
    -webkit-animation-duration: 60s; /* Safari 4.0 - 8.0 */
    animation-name: widthChange;
    animation-duration: 60s;
}

@keyframes widthChange {
    from {width: 600px;}
    to {width: 0px;}
}
Enter fullscreen mode Exit fullscreen mode

Step Five - connect the start of the animation with the start of JS function

By adding visualTimer.classList.add("width-change"); at the beginning of the function I am able to initiate the animation when the timer started to count down. However, it would only work once and then not re-initiate when the timer reset.

This was easily fixed by adding visualTimer.classList.remove("width-change"); when the timer reset, allowing the function to re-initialize the animation when the function looped thru.

What are the biggest conceptual hurdles (if any) you encountered when researching this?

At this point, I was still not happy with how the animation didn't reflect the timer exactly. It was not consistent so that it was over half way thru its countdown when the timer was at 30 seconds.

But then I found another way to breakdown the animation so that it did not go as quickly.

@keyframes widthChange {
    0%   {width: 600px;}
    25%  {width: 450px;}
    50%  {width: 300px;}
    75%  {width: 150px;}
    100% {width: 0px;}
}
Enter fullscreen mode Exit fullscreen mode

This way it hit half way thru the length of the animation when the timer was at 30 seconds. However, the rate at which the width changes still isn't as consistent as I would like.

What article(s) or forum(s) was most helpful to you in learning this?

https://css-tricks.com/controlling-css-animations-transitions-javascript/
https://www.sitepoint.com/css3-animation-javascript-event-handlers/
https://www.w3schools.com/css/css3_animations.asp
https://www.w3schools.com/howto/howto_js_add_class.asp
https://gomakethings.com/two-ways-to-set-an-elements-css-with-vanilla-javascript/

For the Future

Aside from a more consistent animation, I would like to have the animation duration change based on the timer. So that if the timer was longer or shorter, the animation would speed up or slow down to match.

Possible solutions I have in mind are to integrate SASS or build the styling in the JavaScript itself and have the duration be variables. If anyone has any suggestions, they are welcome!

A modified version for CodePen

Top comments (6)

Collapse
 
jwkicklighter profile image
Jordan Kicklighter

You could improve the keyframe code by only including 0% and 100%. The other animation keyframes don't do anything useful for you if you want a smooth and even transition for the full length of the animation.

Collapse
 
nikacodes profile image
Nicole Zonnenberg • Edited

The animation seemed to go faster than the countdown timer and didn't seem to hit 50% when the timer was at 0:30 seconds. This seemed to be the only way to slow it down.

Collapse
 
jwkicklighter profile image
Jordan Kicklighter

That's strange, even if using 0/100% instead of from/to?

Thread Thread
 
nikacodes profile image
Nicole Zonnenberg

It seems to be the case 🤷 It may also be the case in that the animation's duration is not directly tied to the countdown timer--so there may be discrepancy in when the timer and animation start.

Thread Thread
 
ferow2k profile image
Fernando Wentland

Check out the animation-timing-function property. (The default is not linear.)

Thread Thread
 
jwkicklighter profile image
Jordan Kicklighter

Great call!