3 changed files with 65 additions and 0 deletions
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -0,0 +1,50 @@ |
|||||||
|
|
||||||
|
|
||||||
|
function startTime() { |
||||||
|
var currentDate = new Date(); |
||||||
|
var hr = parseInt(currentDate.getHours()); |
||||||
|
var min = parseInt(currentDate.getMinutes()); |
||||||
|
//Add a zero in front of numbers<10
|
||||||
|
if (min < 10) { |
||||||
|
min = "0" + min; |
||||||
|
} |
||||||
|
document.getElementById("header-time").innerHTML = hr + ":" + min; |
||||||
|
|
||||||
|
var dateOptions = { |
||||||
|
weekday: "long", |
||||||
|
year: "numeric", |
||||||
|
month: "long", |
||||||
|
day: "numeric" |
||||||
|
} |
||||||
|
|
||||||
|
var date = currentDate.toLocaleDateString("en-GB", dateOptions); |
||||||
|
document.getElementById("header-date").innerHTML = date; |
||||||
|
|
||||||
|
var time = setTimeout(function(){ startTime() }, 60000); |
||||||
|
} |
||||||
|
|
||||||
|
const quotes = [ |
||||||
|
'Hello, world...', |
||||||
|
'yeet', |
||||||
|
'fuq' |
||||||
|
]; |
||||||
|
document.getElementById("header-quote").innerText = quotes[ |
||||||
|
Math.floor(Math.random() * quotes.length) |
||||||
|
]; |
||||||
|
|
||||||
|
$(document).ready(function(){ |
||||||
|
$("#togglebookmarks").click(function(){ |
||||||
|
$("#hiddenbookmarks").toggle(); |
||||||
|
}); |
||||||
|
}); |
||||||
|
|
||||||
|
document.addEventListener('click', function (event) { |
||||||
|
|
||||||
|
// If the clicked element doesn't have the right selector, bail
|
||||||
|
if (!event.target.matches('#link')) return; |
||||||
|
// Otherwise, run your code...
|
||||||
|
document.body.style.opacity = 0; |
||||||
|
|
||||||
|
}, false); |
||||||
|
|
||||||
|
document.getElementById("container").addEventListener("DOMContentLoaded", startTime()); |
||||||
Loading…
Reference in new issue