45 lines
No EOL
1.1 KiB
JavaScript
45 lines
No EOL
1.1 KiB
JavaScript
function setCookie(cname, cvalue, exdays) {
|
|
const d = new Date();
|
|
d.setTime(d.getTime() + (exdays * 24 * 60 * 60 * 1000));
|
|
let expires = "expires=" + d.toUTCString();
|
|
document.cookie = cname + "=" + cvalue + ";" + expires + ";path=/";
|
|
};
|
|
|
|
function getCookie(cname) {
|
|
let name = cname + "=";
|
|
let decodedCookie = decodeURIComponent(document.cookie);
|
|
let ca = decodedCookie.split(';');
|
|
for (let i = 0; i < ca.length; i++) {
|
|
let c = ca[i];
|
|
while (c.charAt(0) == ' ') {
|
|
c = c.substring(1);
|
|
}
|
|
if (c.indexOf(name) == 0) {
|
|
return c.substring(name.length, c.length);
|
|
}
|
|
}
|
|
return "";
|
|
};
|
|
|
|
async function init() {
|
|
var cont = document.getElementById("content");
|
|
let data = await fetch("git.html");
|
|
let text = await data.text();
|
|
cont.innerHTML = text;
|
|
};
|
|
|
|
async function show(content) {
|
|
var cont = document.getElementById("content");
|
|
cont.style.animationName = "shiftcontent";
|
|
cont.style.animationDuration = "0.2s";
|
|
let data = await fetch(content+".html");
|
|
let text = await data.text();
|
|
cont.innerHTML = text;
|
|
await new Promise(r => setTimeout(r, 200));
|
|
cont.style.animationName = "";
|
|
};
|
|
|
|
|
|
function initfedi(){
|
|
|
|
} |