website for beta festival 2024
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
294 B

4 months ago
const box = document.getElementById('scroll')
4 months ago
let x, y, z
4 months ago
function init(){
x = 0
y = 0
4 months ago
z = 0
4 months ago
AnimateSkybox()
}
function AnimateSkybox(){
x += 0.2
y = window.innerHeight / 2.2
4 months ago
z += 0.2
4 months ago
box.style.backgroundPosition = x + "px " + y + "px"
requestAnimationFrame(AnimateSkybox)
}
init()