mirror of
https://dev.azure.com/hugendubel/ISA/_git/ISA-Frontend
synced 2025-12-31 09:37:15 +01:00
[HIMA-58] - timing updates
This commit is contained in:
@@ -56,3 +56,8 @@
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
* {
|
||||
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
||||
-moz-tap-highlight-color: rgba(0, 0, 0, 0);
|
||||
}
|
||||
|
||||
@@ -12,13 +12,13 @@ export const fadeInAnimation = trigger('fadeIn', [
|
||||
|
||||
query(
|
||||
':leave',
|
||||
[style({ opacity: 1 }), animate('0.4s', style({ opacity: 0 }))],
|
||||
[style({ opacity: 1 }), animate('0.3s', style({ opacity: 0 }))],
|
||||
{ optional: true }
|
||||
),
|
||||
|
||||
query(
|
||||
':enter',
|
||||
[style({ opacity: 0 }), animate('0.3s', style({ opacity: 1 }))],
|
||||
[style({ opacity: 0 }), animate('0.2s', style({ opacity: 1 }))],
|
||||
{ optional: true }
|
||||
)
|
||||
])
|
||||
|
||||
@@ -14,7 +14,7 @@ export const staggerAnimation = trigger('listAnimation', [
|
||||
query(':leave', [
|
||||
style({ height: '0', marginTop: '-56px', visibility: 'hidden' })
|
||||
]),
|
||||
query('*', [stagger(40, [animate('0.3s', style({ opacity: 0 }))])]),
|
||||
query('*', [stagger(-20, [animate('0.3s', style({ opacity: 1 }))])])
|
||||
query('*', [stagger(20, [animate('0.15s', style({ opacity: 0 }))])]),
|
||||
query('*', [stagger(-10, [animate('0.15s', style({ opacity: 1 }))])])
|
||||
])
|
||||
]);
|
||||
|
||||
Reference in New Issue
Block a user