Created
May 12, 2025 19:10
-
-
Save knightad10/f16be2a385df1a725a0421a6995a1b3b to your computer and use it in GitHub Desktop.
Tentura // artblocks.io
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> | |
` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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