diff options
-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> |