Skip to content

Instantly share code, notes, and snippets.

@oflow
Created July 31, 2014 08:20
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 oflow/6aa6f7e3e5e9a68149fa to your computer and use it in GitHub Desktop.
Save oflow/6aa6f7e3e5e9a68149fa to your computer and use it in GitHub Desktop.
眠たい
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<style type="text/css">
body { overflow: hidden; }
h1 {
font-size: 12px;
margin: 0; padding: 0;
white-space: nowrap;
animation: nemui 1s linear infinite;
-webkit-animation: nemui 1s linear infinite;
}
@keyframes nemui {
0% { font-size:12px; }
50% { font-size: 500px; }
100% { font-size:12px; }
}
@-webkit-keyframes nemui {
0% { font-size:12px; }
50% { font-size: 500px; }
100% { font-size:12px; }
}
</style>
<body>
<h1>眠たい</h1>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment