mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-04-30 20:13:11 +00:00
15 lines
396 B
TypeScript
15 lines
396 B
TypeScript
export class FuseAnimationCurves
|
|
{
|
|
static standard = 'cubic-bezier(0.4, 0.0, 0.2, 1)';
|
|
static deceleration = 'cubic-bezier(0.0, 0.0, 0.2, 1)';
|
|
static acceleration = 'cubic-bezier(0.4, 0.0, 1, 1)';
|
|
static sharp = 'cubic-bezier(0.4, 0.0, 0.6, 1)';
|
|
}
|
|
|
|
export class FuseAnimationDurations
|
|
{
|
|
static complex = '375ms';
|
|
static entering = '225ms';
|
|
static exiting = '195ms';
|
|
}
|