“You think that when we look at a map, what we really see is ourselves. After you first saw Inception, you sat silent in the theater for six hours. It freaks you out to realize that everyone around you has a skeleton inside them. You have really looked at your hands.” —xkcd
Last active
July 25, 2019 21:24
-
-
Save mbostock/b11b839d12dbe873d9e6613bfc6582f0 to your computer and use it in GitHub Desktop.
Pierce Tiles
This file contains 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
license: gpl-3.0 | |
height: 960 | |
redirect: https://observablehq.com/@d3/peirce-quincuncial |
This file contains 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
<!DOCTYPE html> | |
<meta charset="utf-8"> | |
<style> | |
body { | |
background: url(pierce.png); | |
background-size: 1280px 1280px; | |
animation-duration: 20s; | |
animation-name: slide; | |
animation-timing-function: linear; | |
animation-iteration-count: infinite; | |
} | |
@keyframes slide { | |
from { background-position: 0 0; } | |
to { background-position: -1280px -1280px; } | |
} | |
</style> | |
<body> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment