31 lines
949 B
JavaScript
31 lines
949 B
JavaScript
document.addEventListener('DOMContentLoaded', (event) => {
|
|
clock();
|
|
})
|
|
|
|
function clock() {
|
|
const today = new Date();
|
|
let h = today.getHours();
|
|
let m = today.getMinutes();
|
|
let s = today.getSeconds();
|
|
m = checkTime(m);
|
|
s = checkTime(s);
|
|
document.getElementById('clock').innerHTML = h + ":" + m + ":" + s;
|
|
setTimeout(clock, 1000);
|
|
}
|
|
|
|
function checkTime(i) {
|
|
if (i < 10) {i = "0" + i}; // add zero in front of numbers < 10
|
|
return i;
|
|
}
|
|
|
|
/* Set the width of the sidebar to 250px and the left margin of the page content to 250px */
|
|
function openNav() {
|
|
document.getElementById("mySidebar").style.width = "250px";
|
|
document.getElementById("main").style.marginLeft = "250px";
|
|
}
|
|
|
|
/* Set the width of the sidebar to 0 and the left margin of the page content to 0 */
|
|
function closeNav() {
|
|
document.getElementById("mySidebar").style.width = "0";
|
|
document.getElementById("main").style.marginLeft = "0";
|
|
} |