🎶 Wybór muzyki – MIESZANE (taneczne)
Zaznacz utwory, które chcesz usłyszeć na imprezie. Następnie wygeneruj i skopiuj listę.
#dj-survey {
max-width: 900px;
margin: 40px auto;
font-family: Arial, sans-serif;
background: #111;
color: #eee;
padding: 30px;
border-radius: 14px;
}
#dj-survey h2 {
text-align: center;
margin-bottom: 10px;
}
#dj-survey p {
text-align: center;
opacity: 0.8;
margin-bottom: 25px;
}
.songs label {
display: block;
margin-bottom: 7px;
cursor: pointer;
}
.buttons {
text-align: center;
margin-top: 20px;
}
button {
margin: 8px;
padding: 12px 22px;
border: none;
border-radius: 8px;
background: #ff9800;
color: #000;
font-weight: bold;
cursor: pointer;
}
button:hover {
background: #ffc107;
}
textarea {
width: 100%;
height: 200px;
margin-top: 25px;
padding: 15px;
border-radius: 8px;
border: none;
font-size: 14px;
}
@media (max-width: 700px) {
#dj-survey {
padding: 20px;
}
}
const songs = [
„Avicii – Wake Me Up”,
„Billie Eilish – Bad Guy”,
„Bruno Mars – Locked Out of Heaven”,
„Calvin Harris feat. Rihanna – We Found Love”,
„Calvin Harris feat. Rihanna – This Is What You Came For”,
„Cardi B feat. Bad Bunny & J Balvin – I Like It”,
„Carly Rae Jepsen – Call Me Maybe”,
„Cee Lo Green – Forget You”,
„The Chainsmokers – Don’t Let Me Down”,
„Clean Bandit feat. Jess Glynne – Rather Be”,
„Daft Punk – Get Lucky”,
„David Guetta feat. Sia – Titanium”,
„DJ Snake – Turn Down for What”,
„Drake – One Dance”,
„Dua Lipa – New Rules”,
„Ed Sheeran – Shape of You”,
„Flo Rida – Good Feeling”,
„French Montana – Unforgettable”,
„Iggy Azalea feat. Charli XCX – Fancy”,
„Jason Derulo – Want to Want Me”,
„Jessie J, Ariana Grande & Nicki Minaj – Bang Bang”,
„Justin Bieber – Sorry”,
„Justin Bieber – What Do You Mean”,
„Justin Timberlake – Can’t Stop the Feeling”,
„Katy Perry – Dark Horse”,
„Ke$ha – Tik Tok”,
„LMFAO – Party Rock Anthem”,
„Macklemore – Can’t Hold Us”,
„Major Lazer feat. MØ – Lean On”,
„Mark Ronson – Uptown Funk”,
„Maroon 5 – Moves Like Jagger”,
„Meghan Trainor – All About That Bass”,
„Nicki Minaj – Starships”,
„OneRepublic – Counting Stars”,
„Pharrell Williams – Happy”,
„Pitbull feat. Ne-Yo – Give Me Everything”,
„Portugal. The Man – Feel It Still”,
„Rihanna – Work”,
„Taio Cruz – Dynamite”,
„Taylor Swift – Shake It Off”,
„The Weeknd – Can’t Feel My Face”,
„The Weeknd – Starboy”,
„Usher – OMG”,
„Walk the Moon – Shut Up and Dance”,
„Zedd – The Middle”,
„Turn The Lights Off (viral)”
];
const container = document.querySelector(„.songs”);
songs.forEach(song => {
container.innerHTML += ` ${song}`;
});
function generateList() {
const checked = document.querySelectorAll(„.songs input:checked”);
let output = „WYBRANE UTWORY – MIESZANE (TANECZNE):\n\n”;
checked.forEach((c, i) => {
output += (i + 1) + „. ” + c.value + „\n”;
});
document.getElementById(„result”).value = checked.length ? output : „Nie wybrano żadnych utworów.”;
}
function copyList() {
const text = document.getElementById(„result”);
text.select();
document.execCommand(„copy”);
alert(„Lista skopiowana. Możesz ją wysłać DJ-owi 👍”);
}