Guest User

Untitled

a guest
Feb 18th, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. animations: [
  2. trigger('dataChange', [
  3. transition('void => *', [
  4. sequence([
  5. animate('.35s ease', style({ opacity: '.2' })),
  6. animate('.35s ease', style({ opacity: 1 }))
  7. ])
  8. ])
  9. ])
  10. ]
  11.  
  12. <mat-header-row *matHeaderRowDef="displayedColumns"></mat-header-row>
  13. <mat-row [@load]="" *matRowDef="let row; columns: displayedColumns;" class="item-row" [cdkDetailRow]="row" [cdkDetailRowTpl]="tpl"></mat-row>
  14.  
  15. animate(".35s ease", style({ height: '*', opacity: '.2', transform: 'translateY(0)', 'box-shadow': 'none' })),
  16. animate(".35s ease", style({ height: '*', opacity: 1, transform: 'translateY(0)' }))
Add Comment
Please, Sign In to add comment