mirror of
https://github.com/Ellpeck/TinyLifeWeb.git
synced 2024-11-22 19:28:35 +01:00
only start moving the background once the page has fully loaded
This commit is contained in:
parent
0defd1da5a
commit
f5c675ace4
1 changed files with 12 additions and 9 deletions
|
@ -35,13 +35,16 @@
|
|||
|
||||
let background = $(".top");
|
||||
background.css("background-position", `${x}% ${y}%`);
|
||||
setInterval(function () {
|
||||
x += addX;
|
||||
y += addY;
|
||||
if (x < 0 || x > 100)
|
||||
addX *= -1;
|
||||
if (y < 0 || y > 100)
|
||||
addY *= -1;
|
||||
background.css("background-position", `${x}% ${y}%`);
|
||||
}, 30);
|
||||
|
||||
$(window).on("load", function () {
|
||||
setInterval(function () {
|
||||
x += addX;
|
||||
y += addY;
|
||||
if (x < 0 || x > 100)
|
||||
addX *= -1;
|
||||
if (y < 0 || y > 100)
|
||||
addY *= -1;
|
||||
background.css("background-position", `${x}% ${y}%`);
|
||||
}, 30);
|
||||
});
|
||||
</script>
|
Loading…
Reference in a new issue