Created
August 1, 2012 19:36
-
-
Save chestozo/3229984 to your computer and use it in GitHub Desktop.
Untitled
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
.box { | |
position: absolute; | |
margin-top: 100px; | |
margin-left: 50px; | |
box-shadow: 0px 0px 5px #CCC, inset 0px 0px 10px #EEE; | |
font: 14pt arial; | |
text-align: center; | |
padding-top: 30px; | |
width: 160px; | |
height: 70px; | |
animation-name: fall; | |
animation-duration: 3s; | |
animation-timing-function: cubic-bezier(.56,.1,.28,.96); | |
animation-delay: 3sec; | |
animation-iteration-count: infinite; | |
} | |
@keyframes fall { | |
0% { margin-top: 100px; opacity: 0; } | |
20% { margin-top: 100px; opacity: 1; transform: rotate(0deg); } | |
50% { margin-top: 1000px; transform: rotate(-30deg); } | |
100% { margin-top: 1000px; transform: rotate(-30deg); } | |
} |
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
<div class="box"> | |
Hello, world :) | |
</div> |
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
{"view":"split-vertical","fontsize":"70","seethrough":"","prefixfree":"1","page":"all"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment