feat: improve apis + add animated background and assessment average plugins

This commit is contained in:
SethBurkart123
2025-03-30 13:17:19 +11:00
parent aeaf5d9e59
commit b8d8b108c3
11 changed files with 189 additions and 268 deletions
@@ -0,0 +1,6 @@
export function RemoveBackground() {
const backgrounds = document.getElementsByClassName("bg");
// Convert HTMLCollection to Array and remove each element
Array.from(backgrounds).forEach(element => element.remove());
}