A Startpage inspired by TB-96's Evening Startpage and Tobias-Schoch's startpage-wave.
https://start.yandols.xyz
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.4 KiB
61 lines
1.4 KiB
/*
|
|
* Startpage Background Script
|
|
* Script taken from TB-96's Evening Startpage project
|
|
* Modified by YandolsZX
|
|
* Original source can found here: https://github.com/TB-96/Evening-Startpage
|
|
*/
|
|
|
|
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;
|
|
}
|
|
if (hr < 10) {
|
|
hr = "0" + hr;
|
|
}
|
|
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());
|