Skip to content

Instantly share code, notes, and snippets.

@magician11
Created May 16, 2015 21:30
Show Gist options
  • Save magician11/27602354395a2a2196df to your computer and use it in GitHub Desktop.
Save magician11/27602354395a2a2196df to your computer and use it in GitHub Desktop.
CSS3 flyIn demo
.profile-pic-transition.ng-hide-remove.ng-hide-remove-active {
@include vendor-prefixes(animation, 'flyIn 3s');
}
@include keyframes(flyIn) {
0% {
opacity: 0;
@include vendor-prefixes(transform, 'scale(0, 0)');
}
80% {
opacity: 0.8;
@include vendor-prefixes(transform, 'scale(1.1, 1.1)');
}
100% {
opacity: 1;
@include vendor-prefixes(transform, 'scale(1, 1)');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment