/Percentage-of-the-day

Visualization of the day in percentage.

Primary LanguageJavaScript

Percentage of the day

Visualization of the day in percentage made in HTML & Javascript

Using this javascript calculation to calculate the current percentage of a day:

var secElapsed = (today.getHours() * 3600 + today.getMinutes() * 60 + today.getSeconds() + today.getMilliseconds() / 1000) / 86400;
var elapsedPercentage = secElapsed * 100;

Link to the demo