2025-05-18 11:17:48 +02:00
|
|
|
let hippie = {
|
2025-05-18 13:08:58 +02:00
|
|
|
brand: "|-| | |^ |^ | [- ",
|
|
|
|
|
screen: {
|
|
|
|
|
w: Math.max(document.documentElement.offsetWidth, document.documentElement.clientWidth, window.innerWidth, 0),
|
|
|
|
|
vh: Math.max(document.documentElement.clientHeight, window.innerHeight, 0),
|
|
|
|
|
dh: Math.max(document.documentElement.offsetHeight, document.documentElement.clientHeight, 0),
|
2025-11-01 12:25:48 +01:00
|
|
|
y: document.documentElement.scrollTop
|
2025-05-18 13:08:58 +02:00
|
|
|
// hippie.screen.y: document.documentElement.scrollTop
|
|
|
|
|
},
|
|
|
|
|
body: {
|
|
|
|
|
w: Math.max(document.body.offsetWidth, document.body.clientWidth, window.innerWidth, 0),
|
|
|
|
|
h: Math.max(document.body.offsetHeight, document.body.clientHeight, 0),
|
|
|
|
|
}
|
2019-03-29 18:41:27 +01:00
|
|
|
};
|
2025-05-18 11:17:48 +02:00
|
|
|
let viewHover = true;
|
|
|
|
|
let basicEase = 600;
|
2019-03-29 18:41:27 +01:00
|
|
|
|
2025-05-18 11:17:48 +02:00
|
|
|
const onerowAlphabet = "/\\ ]3 ( |) [- /= (_, |-| | _T /< |_ |\\/| |\\| () |^ ()_ /? _\\~ ~|~ |_| \\/ \\/\\/ >< `/ ~/_ ";
|
|
|
|
|
const onerowDigits = "\'| ^/_ -} +| ;~ (o \"/ {} \"| (\\) ";
|
|
|
|
|
const flagColors = [
|
2025-05-18 13:08:58 +02:00
|
|
|
'fad803',
|
|
|
|
|
'f2af13',
|
|
|
|
|
'd30a51',
|
|
|
|
|
'8e1f68',
|
|
|
|
|
'273f8b',
|
|
|
|
|
'3c579a',
|
|
|
|
|
'b7e0f0',
|
|
|
|
|
'6bc7d9',
|
|
|
|
|
'52bed1'
|
2025-10-25 09:32:22 +02:00
|
|
|
];
|