added files from christoph

This commit is contained in:
rra
2022-06-15 07:39:59 +02:00
parent ce00fb5b26
commit cad1d48933
26 changed files with 1310 additions and 77 deletions

View File

@ -50,6 +50,12 @@
card.classList.add('lumbung-gallery')
}
})
// footer random color
var color = ['orange','green','blue'];
var footer = document.getElementById("footer");
var rand = Math.floor(Math.random() * color.length);
footer.classList.add(color[rand]);
</script>
</html>