only start moving the background once the page has fully loaded

This commit is contained in:
Ell 2022-02-02 22:17:39 +01:00
parent 0defd1da5a
commit f5c675ace4

View file

@ -35,6 +35,8 @@
let background = $(".top");
background.css("background-position", `${x}% ${y}%`);
$(window).on("load", function () {
setInterval(function () {
x += addX;
y += addY;
@ -44,4 +46,5 @@
addY *= -1;
background.css("background-position", `${x}% ${y}%`);
}, 30);
});
</script>