Skip to content

Instantly share code, notes, and snippets.

@ideefixe
Created January 10, 2013 18:20
Show Gist options
  • Save ideefixe/4504458 to your computer and use it in GitHub Desktop.
Save ideefixe/4504458 to your computer and use it in GitHub Desktop.
animate in
/* animate in */
@keyframes myfirst
{
from {margin-top: 100px;opacity:0}
to {margin-top: 50px; opacity:1}
}
@keyframes myfirst2
{
from {margin-top: 15px}
to {margin-top: 10px}
}
.text1{
animation: myfirst 1s cubic-bezier(0.3, -1, 0.7, 2.5);
margin-top:50px;
}
@keyframes mysecond
{
from {margin-top: 100px;opacity:0}
to {margin-top: 0; opacity:1}
}
.text2{
animation: mysecond 1s 4;
}
@keyframes mythird
{
from {margin-top: 100px;opacity:0}
to {margin-top: 0; opacity:1}
}
.text3{
animation: mythird 1s ease-out;
}
<div class="text1">
fdsafdsafds
</div>
<!--
<div class="text2">
asfddfsafdas
</div>
<div class="text3">
asfdfadsfads
</div>
-->
// alert('Hello world!');
{"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