Skip to content

Instantly share code, notes, and snippets.

@knightad10
Created May 12, 2025 19:10
Show Gist options
  • Save knightad10/f16be2a385df1a725a0421a6995a1b3b to your computer and use it in GitHub Desktop.
Save knightad10/f16be2a385df1a725a0421a6995a1b3b to your computer and use it in GitHub Desktop.
Tentura // artblocks.io
let i = (Math.random()*777) | 0;
if (i<10)
i = '00' + i
if (i<100)
i = '0' + i
document.body.innerHTML += `
<iframe src='https://generator.artblocks.io/0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270/265000${i}'></iframe/>
<a target='_blank' href='https://artblocks.io/project/265'>Tentura#${i} // artblocks.io</a>
`
body {
margin: 0;
overflow: hidden;
}
iframe {
margin: 0;
overflow: hidden;
width: 100vw;
height: 100vh;
}
a {
position: fixed;
top: 0;
width: 100vw;
display: block;
text-align: center;
font-size: 30px;
background: #7777;
color: white;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment