Skip to content

Instantly share code, notes, and snippets.

@jakeNiemiec
Forked from mbostock/.block
Created August 12, 2016 20:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jakeNiemiec/2f16d37becd8eb77593694f5d464885d to your computer and use it in GitHub Desktop.
Save jakeNiemiec/2f16d37becd8eb77593694f5d464885d to your computer and use it in GitHub Desktop.
Pierce Tiles
license: gpl-3.0
height: 960

“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