Created
July 31, 2014 08:20
-
-
Save oflow/6aa6f7e3e5e9a68149fa to your computer and use it in GitHub Desktop.
眠たい
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> | |
<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