zk_html/lj-dump/L-1452.html

93 lines
3.7 KiB
HTML

<!doctype html>
<html>
<head>
<title>Zk | Trying it on my mp3 player...</title>
<link rel="stylesheet" type="text/css" href="/style.css" />
<meta name="viewport" content="width=device-width" />
<meta charset="utf-8" />
</head>
<body>
<main>
<header>
<h1>Zk | Trying it on my mp3 player...</h1>
</header>
<article class="content">
<ul>
<li>Put your music player on random.</li>
<li>Post the first line from the first 25 songs that play, no matter how embarrassing the song.</li>
<li>Let everyone guess what song and artist the lines come from.</li>
<li>Bold the songs when someone guesses correctly.</li>
<li>
<p>Looking them up on Google or any other search engine is CHEATING!</p>
</li>
<li>
<p>Maria, Maria!</p>
</li>
<li>Breeze of the black night blows...</li>
<li>Requiem, Requiem <strong>War Requiem - Britten <lj user="mooglepower"></lj></strong></li>
<li>Love is a stranger in another car...</li>
<li>Arirang, arirang, arariyo</li>
<li>Behind closed eyelids in very many cases...</li>
<li>I certainly haven't been shopping for any new shoes.</li>
<li>Agnus dei qui tolis pecata mundi... <strong>Mass for Double Choir - Frank Martin <lj user="mooglepower"></lj></strong></li>
<li>O magnum mysterium... <strong> O Magnum Mysterium - Morten Lauridsen <lj user="mooglepower"></lj></strong>
<em>This is boring, sorry.</em></li>
<li>Die welt möcht in sereisen... (guessing on the spelling)</li>
<li>And that is is all that love's about</li>
<li>Quem vidistis pastores</li>
<li>I cannot dance, O Lord <strong>I cannot dance, O Lord - CSU Chamber Choir <lj user="gsfuchs"></lj> sorta</strong></li>
<li>As I went out one morning to take the pleasant air</li>
<li>Wake up and smell the coffee</li>
<li>Words are flowing out like endless rain into a paper cup <strong>Across the Universe - The Beatles, cover by Fiona Apple <lj user="vandringar"></lj></strong></li>
<li>Bogoroditsye devo raduisa</li>
<li>I tell you how I feel but you don't care</li>
<li>Oh no, I see a spider-web is tangled up with me <strong>Trouble - Coldplay <lj user="mikosquirrel"></lj></strong></li>
<li>N'allez pas au bois d'Ormonde</li>
<li>I think there must be a place in the soul</li>
<li>U'ra haneh vel, v'chinor u'rah! (guessing on the spelling)</li>
<li>Little bird, little bird, go through my window</li>
<li>One man, he disappoint me.</li>
<li>Full fathom five thy father lies.
<em>Yeah, maybe this one was a bad idea.&lt;/em</li>
</ul>
<span class="control">Expand all</span>
</article>
<footer>
<p>Page generated on 2008-09-24 17:25:42</p>
</footer>
</main>
<script type="text/javascript">
document.querySelectorAll('li').forEach(el => {
if (el.querySelectorAll('li').length !== 0) {
el.classList.add('has-nested', 'closed');
el.innerHTML = `<span class="toggle"></span> ${el.innerHTML}`;
}
});
document.querySelectorAll('.toc .has-nested').forEach(el => {
el.classList.remove('has-nested', 'closed');
});
document.querySelectorAll('li.has-nested').forEach(el => {
el.querySelector('.toggle').addEventListener('click', () => {
el.classList.toggle('closed');
});
});
let expanded = false;
document.querySelector('.control').addEventListener('click', (e) => {
expanded = !expanded;
if (expanded) {
e.target.innerText = 'Collapse all';
} else {
e.target.innerText = 'Expand all';
}
document.querySelectorAll('.has-nested').forEach((el) => {
if (expanded) {
el.classList.remove('closed');
} else {
el.classList.add('closed')
}
});
});
</script>
</body>
</html>