Spaces:
Running
Running
| // Cria os hexágonos do fundo | |
| for (let i = 0; i < 100; i++) { | |
| const hexagon = document.createElement('div'); | |
| hexagon.classList.add('hexagon'); | |
| // Posiciona o hexágono aleatoriamente | |
| hexagon.style.left = Math.random() * 100 + 'vw'; | |
| hexagon.style.top = Math.random() * 100 + 'vh'; | |
| document.body.appendChild(hexagon); | |
| } | |