This commit is contained in:
sky
2025-11-23 10:56:29 -05:00
parent 3cdee505d9
commit e60e6791d9
7 changed files with 110 additions and 10 deletions

12
js/all.min.js vendored
View File

@ -25,8 +25,16 @@ function antiSkid() {
warning.style.position = "absolute";
warning.style.width = "200px";
warning.style.textAlign = "center";
warning.style.bottom = "20px";
warning.style.right = "20px";
if(Math.random() > 0.5) {
warning.style.bottom = "20px";
} else {
warning.style.top = "20px";
}
if(Math.random() > 0.5) {
warning.style.right = "20px";
} else {
warning.style.left = "20px";
}
warning.style.backgroundColor = "#00000077";
warning.style.padding = "8px";
warning.style.cursor = "pointer";