Simple fade in animation with more toderp stuff

This commit is contained in:
octicon-git-branch(16/)
octicon-tag(16/)
Max Lynch
2013-10-04 10:31:18 -05:00
gitea-unlock(16/)
parent 1212945df8
commit 52d498a75f
octicon-diff(16/tw-mr-1) 7 changed files with 104 additions and 27 deletions

15
scss/ionic/_animations.scss
View File

@@ -37,3 +37,18 @@ $bezier-function: cubic-bezier(.1, .7, .1, 1);
transform: translate3d(0, 100%, 0);
}
}
@keyframes fadein {
from { opacity:0; }
to { opacity:1; }
}
@-webkit-keyframes fadein { /* Safari and Chrome */
from { opacity:0; }
to { opacity:1; }
}
.fade-in {
opacity: 0;
animation: fadein 0.5s;
-webkit-animation: fadein 0.5s;
}