Last active
June 18, 2018 14:46
-
-
Save realtomaszkula/ec317034a6bbd59e959183dffd9b8d46 to your computer and use it in GitHub Desktop.
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
trigger('toggle', [ | |
state( | |
VisibilityState.Hidden, | |
style({ opacity: 0, transform: 'translateY(-100%)' }) | |
), | |
state( | |
VisibilityState.Visible, | |
style({ opacity: 1, transform: 'translateY(0)' }) | |
), | |
transition('* => *', animate('200ms ease-in')) | |
]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment