Vehicle Icons Falling
Menu
Games online
Search for
Action
Cars
cooking
Girls
puzzle
sports
Sidebar
Hot games
Chikis Chase
Unicorn Fashion Dress Up
Rescue Dog Web
Night City Racing
Block Hexa Puzzle Online
Tomb Runner 2
Chikis Chase
Unicorn Fashion Dress Up
Rescue Dog Web
Night City Racing
Block Hexa Puzzle Online
Tomb Runner 2
Chikis Chase
Unicorn Fashion Dress Up
1
2
{ const textContainer = document.querySelector('.text-container'); // ุฅุฎูุงุก ุงููุต ุงูุฃุตูู textContainer.style.display = 'none'; // ุฅูุดุงุก ุงูุฃููููุงุช ูุงูุชุดุงุฑูุง gameIcons.forEach((icon, index) => { const gameIconElement = document.createElement('div'); gameIconElement.classList.add('game-icon'); gameIconElement.textContent = icon; // ุชุนููู ููู ุนุดูุงุฆูุฉ ูุงูุชุดุงุฑ ุงูุฃููููุงุช const angle = Math.random() * 360; const distance = Math.random() * 300 + 100; // ู ุณุงูุฉ ุงูุงูุชุดุงุฑ const x = Math.cos(angle) * distance; const y = Math.sin(angle) * distance; gameIconElement.style.setProperty('--x', `${x}px`); gameIconElement.style.setProperty('--y', `${y}px`); // ุฅุถุงูุฉ ุงูุฃููููุฉ ุฅูู body document.body.appendChild(gameIconElement); // ุฅุฒุงูุฉ ุงูุฃููููุฉ ุจุนุฏ ุงูุชูุงุก ุงูุงูุชุดุงุฑ setTimeout(() => { gameIconElement.remove(); }, 2000); // ููุณ ู ุฏุฉ ุงูุงูุชุดุงุฑ }); }, 2000); // ุชุฃุฎูุฑ 2 ุซุงููุฉ (ููุช ุงููู ูุถ ูุงูุงูุชุฒุงุฒ)