Skip to content

Instantly share code, notes, and snippets.

@tobyshooters
tobyshooters / interface.html
Last active January 18, 2024 03:54
web bootstrap
<script>
const $ = ({
el, // existing string type to create
pr = null, // parent node
at = {}, // attributes
st = {}, // style
ev = {}, // events, element injected as first parameter
ih = "" // innerHTML
}) => {
let n = el;
@tobyshooters
tobyshooters / infinite.html
Created March 25, 2022 14:59
infinite.html
<style>
body {
background: conic-gradient(from 90deg at 1px 1px, #fdf6e3 90deg, #eee8d5 0deg);
background-position: 0px 0px;
background-size: 40px 40px;
overflow: hidden;
}
.elem {
position: absolute;
@tobyshooters
tobyshooters / metamedium.html
Last active April 23, 2021 21:59
infinite, multimedia canvas
<style>
html, body {
margin: 0px;
background-color: #fdf6e3;
font-family: monospace;
}
#canvas {
height: 100%;
width: 100%;
}