Create a gist now

Instantly share code, notes, and snippets.

@mbostock /.block
Last active Jul 3, 2016

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