launch-countdown-timer-main

Frontend Mentor - Launch countdown timer solution


This is a solution to the Launch countdown timer challenge on Frontend Mentor. Frontend Mentor challenges help you improve your coding skills by building realistic projects.



Table of contents



Overview

The challenge

Users should be able to:



Screenshot

drawing



My process

Built with

What I learned

I learned how to use the css ‘rem’ unit along side media queries on the root element’s font size. Turns out to be effective and easy way to control a bunch of sizes at once.

To create a proper flip, each box has four flaps, each with a number on it. Three for the top and one for the bottom.

// My HTML before OOP takes control

<div class="countdown">
      <div class="container">
        <div class="box days"></div>
        <div class="label">days</div>
      </div>
      <div class="container">
        <div class="box hours"></div>
        <div class="label">hours</div>
      </div>
      <div class="container">
        <div class="box minutes"></div>
        <div class="label">minutes</div>
      </div>
      <div class="container">
        <div class="box seconds"></div>
        <div class="label">seconds</div>
      </div>
    </div>
 // the css trick to get a flip 

  animation: rotate3d 1s forwards;
  @keyframes rotate3d{
    from{transform:rotate3d(0)}
    to{
      transform:rotate3d(1,0,0,-180deg);
    }
  }
// index.js

import Box from "./objects/box";

new Box('days')
new Box('hours')
new Box('minutes')
new Box('seconds')

Author