diff options
author | Luna! <51751618+janLuna@users.noreply.github.com> | 2022-10-12 20:23:41 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-12 20:23:41 +0200 |
commit | 411bfcb7b3676cdb4966456d561fbd072cbeb277 (patch) | |
tree | 94259ab1dbcd9b81f704ebfbf071fec537f484be | |
parent | 399aa393b8810bbea265fdb23d3c3ac9ffe72658 (diff) | |
download | exhq.github.io-411bfcb7b3676cdb4966456d561fbd072cbeb277.tar.gz exhq.github.io-411bfcb7b3676cdb4966456d561fbd072cbeb277.tar.bz2 exhq.github.io-411bfcb7b3676cdb4966456d561fbd072cbeb277.zip |
fixed the jankyass movement
balls
-rw-r--r-- | static/fuck/index.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/static/fuck/index.html b/static/fuck/index.html index 2b50d39..d1601a5 100644 --- a/static/fuck/index.html +++ b/static/fuck/index.html @@ -41,7 +41,7 @@ let xPosition = 10; let yPosition = 10; let xSpeed = 4; let ySpeed = 4; -text.style.transition = `transform ${FPS}ms linear, color 1000ms linear`; +text.style.transition = "color 1000ms linear"; function update() { text.style.transform = `translateX(${xPosition}px) translateY(${yPosition}px)` } @@ -68,4 +68,4 @@ window.addEventListener("resize", () => { }); </script> -</html>
\ No newline at end of file +</html> |