Email or username:

Password:

Forgot your password?
1 post total
Adam Kuhn

A semi-playable Doom demo I built for #FrontEndConf using CSS scroll timeline, a handful of checkboxes and has() selectors + a nice assist from image-rendering: pixelated.

Oh and no JS, as god intended.

codepen.io/cobra_winfrey/full/

Show previous comments
meduz'

@cobra_winfrey A colleague throwed the idea of writing a TAS (tool-assisted speedrun) in JS for it, so I did it:

`document.querySelectorAll('input').forEach(checkbox => checkbox.checked = true)`

Go Up