Skip to content

Instantly share code, notes, and snippets.

@mbostock
Last active July 25, 2019 21:24
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save mbostock/b11b839d12dbe873d9e6613bfc6582f0 to your computer and use it in GitHub Desktop.
Pierce Tiles
license: gpl-3.0
height: 960
redirect: https://observablehq.com/@d3/peirce-quincuncial

“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

<!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