Back to it with the ally

This commit is contained in:
Madison Scott-Clary
2019-09-10 10:09:22 -07:00
parent cf07cb5e42
commit 4ab5a75eec
39 changed files with 2832 additions and 2272 deletions

46
content/ally/014.html Normal file
View File

@ -0,0 +1,46 @@
---
date: 2019-08-19
weight: 14
---
<pre>
( <a class="pulse huh" href="/aside/1">...</a> )
O
o
.
_____,,,_^..^_,,,_____
__|____|____|____|____
____|____|____|____|__
</pre>
<script type="text/javascript">
/*
You know this is also very Maddy, right?
Of course it is.
Alright, just making sure you knew that was the case.
Honestly, at this point, would you expect anything less?
I guess not.
*/
const grawlix = ',/?!@#$%^*-+.'.split('');
el = document.querySelector('.huh');
el.innerHTML = '';
el.insertAdjacentHTML('beforeend', '<em><span class="i1"></span><span class="i2"></span><span class="i3"></span><span class="i4"></span><span class="i5"></span><span class="i6"></span><span class="i7"></span><span class="i8"></span><span class="i9"></span><span class="i10"></span></em>');
let filled = 0;
window.setInterval(() => {
let inner = document.querySelector('.huh .i' + (Math.floor(Math.random() * 10) + 1));
if (Math.floor(Math.random() * 10) % 3 == 0 && filled > 3) {
inner.textContent = '';
filled--;
} else {
if (inner.textContent == '') {
filled++;
}
inner.textContent = grawlix[Math.floor(Math.random() * grawlix.length)];
}
}, 250);
</script>