Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ import { AnimationsService } from './animations.service';
export const ROUTE_ANIMATIONS_ELEMENTS = 'route-animations-elements';

const STEPS_ALL: any[] = [
query(':leave > *', style({opacity: 1, position: 'static'}), {
optional: true
}),
query(':enter > *', style({ opacity: 0, position: 'fixed' }), {
optional: true
}),
Expand Down Expand Up @@ -45,7 +48,11 @@ const STEPS_ALL: any[] = [
)
],
{ optional: true }
)
),
query(':enter > *', [
style({position: 'static'})
],
{optional: true})
]),
query(
':enter .' + ROUTE_ANIMATIONS_ELEMENTS,
Expand All @@ -60,8 +67,8 @@ const STEPS_ALL: any[] = [
)
];
const STEPS_NONE = [];
const STEPS_PAGE = [STEPS_ALL[0], STEPS_ALL[2]];
const STEPS_ELEMENTS = [STEPS_ALL[1], STEPS_ALL[3]];
const STEPS_PAGE = [STEPS_ALL[0], STEPS_ALL[1], STEPS_ALL[3]];
const STEPS_ELEMENTS = [STEPS_ALL[2], STEPS_ALL[4]];

export const routeAnimations = trigger('routeAnimations', [
transition(isRouteAnimationsAll, STEPS_ALL),
Expand Down