File size: 343 Bytes
43e0b1e
 
 
 
 
 
 
 
c2e01d5
1
2
3
4
5
6
7
8
9
10
// 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);
}