Created
March 18, 2013 23:59
-
-
Save anonymous/5192214 to your computer and use it in GitHub Desktop.
Untitled
This file contains hidden or 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
@keyframes flipleft { | |
from { transform: rotate(0); } | |
50% { transform: rotate(180deg); } | |
to { transform: rotate(180deg); } | |
} | |
@keyframes flipright { | |
from { transform: rotate(0); } | |
50% { transform: rotate(-180deg); } | |
to { transform: rotate(-180deg); } | |
} | |
.flipright {display:inline-block; animation: flipright 2s ease-out infinite; transform-origin:10% 60%; position:relative; left:10px; } | |
.flipleft {display:inline-block; animation: flipleft 2s ease-out infinite; transform-origin:100% 60%; position:relative; left:-10px; } | |
body { color:#FFF; background-color:#333; } |
This file contains hidden or 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
<p><span class="flipright">┬─┬</span>ヽ(`Д´)ノ<span class="flipleft">┬─┬</span></p> |
This file contains hidden or 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
// alert('Hello world!'); |
This file contains hidden or 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
{"view":"split","fontsize":"100","seethrough":"","prefixfree":"1","page":"all"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment