JavaScript - Simple New Year Countdown
Submitted by razormist on Saturday, September 15, 2018 - 21:29.
In this tutorial we will create a Simple New Year Countdown using JavaScript. JavaScript is a scripting or programming language that allows you to implement complex things on web pages. It is a text-based programming language meant to run as part of a web-based application. It is an interpreted programming language that has a capabilities of Object-Oriented. So Let's do the coding...
There you have it we successfully created a Simple New Year Countdown using JavaScript. I hope that this simple tutorial help you to what you are looking for. For more updates and tutorials just kindly visit this site. Enjoy Coding!
Getting started:
This is the link for the bootstrap that i used for the layout design https://getbootstrap.com/.The Main Interface
This code contains the interface of the application. To create this just write these block of code inside the text editor and save this as index.html.- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8" name="viewport" content="width=device-width, initial-scale=1"/>
- <link rel="stylesheet" type="text/css" href="css/bootstrap.css"/>
- </head>
- <body>
- <nav class="navbar navbar-default">
- <div class="container-fluid">
- </div>
- </nav>
- <div class="col-md-6 well">
- <hr style="border-top:1px dotted #ccc;"/>
- <table class="table">
- <tr style="background-color:#000;">
- </tr>
- <tr>
- </tr>
- </table>
- </div>
- </body>
- </html>
Creating the Script
This code contains the script of the application. This code will start the countdown before the new year eve when the button is clicked. To do this just copy and write these block of codes as shown below inside the text editor and save it as script.js inside the js folder.- function startCountDown(){
- var today = new Date();
- var target = new Date("January 1, 2019 00:00:00");
- var currentTime = today.getTime();
- var targetTime = target.getTime();
- var time = targetTime - currentTime;
- var sec = Math.floor(time/1000);
- var min = Math.floor(sec/60);
- var hrs = Math.floor(min/60);
- var days = Math.floor(hrs/24);
- hrs = hrs % 24;
- min = min % 60;
- sec = sec % 60;
- hrs = (hrs<10) ? "0"+hrs : hrs;
- min = (min<10) ? "0"+min : min;
- sec = (sec<10) ? "0"+sec : sec;
- document.getElementById('days').innerHTML = "<center><h1>"+days+"</h1></center>";
- document.getElementById('hrs').innerHTML = "<center><h1>"+hrs+"</h1></center>";
- document.getElementById('min').innerHTML = "<center><h1>"+min+"</h1></center>";
- document.getElementById('sec').innerHTML = "<center><h1>"+sec+"</h1></center>";
- if(time > 0){
- setTimeout(startCountDown, 1000);
- }else{
- endCountDown();
- }
- }
- function endCountDown(){
- document.getElementById('title').innerHTML = "HAPPY NEW YEAR!";
- document.getElementById('days').innerHTML = "<center><h1>00</h1></center>";
- document.getElementById('hrs').innerHTML = "<center><h1>00</h1></center>";
- document.getElementById('min').innerHTML = "<center><h1>00</h1></center>";
- document.getElementById('sec').innerHTML = "<center><h1>00</h1></center>";
- }
Add new comment
- 1349 views