zk_html/lj-dump/L-620.html

69 lines
2.5 KiB
HTML

<!doctype html>
<html>
<head>
<title>Zk | Riddle me this, Batman!</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 | Riddle me this, Batman!</h1>
</header>
<article class="content">
<p>Though you'd kinda have to be a freakin' huge music geek to get it. Bonus points if you do, though.</p>
<p><lj-raw><pre>
S: d m s l ls f s d d t l mml ssf r ' d m s l ls f s d '
A: d m s l ls f s d ' f m r llr ddt s ' d d m f fm r m d '
T: m s d d fs l s m '
B: s t r f f m r m d d d f d '</p>
<p>' = cutoff, otherwise all notes are held.
</pre></lj-raw></p>
<p>EDIT: so the point is to guess the song only from the solfej. </p>
<p>The answer is...
<details text="...behind this here cut!"><summary>...behind this here cut!</summary>
...Behold a Star from Jacob Rising from <em>Christus</em> by Mendelssohn.</p>
<p>Yeah, sorry 'bout that.</p>
<p>&lt;/details</p>
<span class="control">Expand all</span>
</article>
<footer>
<p>Page generated on 2005-09-15 16:29:04</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>