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

17 lines
409 B
JavaScript

3 years ago
const container = document.getElementById("container");
// console.log(container.children);
3 years ago
let contents = Array.from(container.children);
3 years ago
// console.log(images);
3 years ago
contents.forEach((item) => {
console.log(item);
3 years ago
left = Math.random() * 100;
top = Math.random() * 100;
3 years ago
zIndex = Math.round(Math.random() * 1000);
item.style.left = left + "%";
item.style.top = top + "%";
item.style.zIndex = zIndex;
3 years ago
});