Updated a couple pages, Finished new basic style, Removed tools from menu, Updated formula wizard, Other minor changes

Update .gitignore, .htaccess, and 32 more files...
This commit is contained in:
2023-11-07 23:23:42 +01:00
parent 3891f5ce98
commit f14b8d33a6
34 changed files with 545 additions and 268 deletions

View File

@@ -1,9 +1,33 @@
const animationStepCount = 10;
const CpuArchitecture = {
Unknown: 0,
x86: 1,
x64: 2,
ArmGeneric: 3,
Arm64: 4,
RiscV: 5,
}
function getBezierBlend(progress) {
return (3 * progress ** 2) - (2 * progress ** 3);
}
function getCpuArchitecture(userAgent = navigator.userAgent) {
if(userAgent.includes("x64")) {
return CpuArchitecture.x64;
} else if(userAgent.includes("x86")) {
return CpuArchitecture.x86;
} else if(userAgent.includes("ARM")) {
return CpuArchitecture.ArmGeneric;
} else if(userAgent.includes("ARM64")) {
return CpuArchitecture.Arm64;
} else if(userAgent.includes("RISC-V")) {
return CpuArchitecture.RiscV;
}
return CpuArchitecture.Unknown;
}
function fadeOut(element, time = 200) {
element.style.opacity = "1.0";
element.hidden = false;