-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathanimations.ts
56 lines (50 loc) · 1.31 KB
/
animations.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
import { css, FlattenSimpleInterpolation, keyframes } from 'styled-components';
const fadeKeyframes = (withScale = true) => keyframes`
0%,
100% {
opacity: 1;
${
withScale &&
css`
transform: scale(1.2);
`
}
}
50% {
opacity: 0.6;
${
withScale &&
css`
transform: scale(1);
`
}
}
`;
/**
* Анимация угасания для лоадера
* @param {number} duration Длительность анимации в секундах, по умолчанию 5
* @param {boolean} withScale Нужна ли дополнительная анимация пульсирования, по умолчанию true
*/
export const fadeAnimation = (
duration = 5,
withScale = true
): FlattenSimpleInterpolation => css`
animation: ${fadeKeyframes(withScale)} ${duration}s linear infinite;
`;
const appearKeyframes = keyframes`
0% {
opacity: 0;
}
100% {
opacity: 1;
}
`;
/**
* Анимация плавного появления элемента
* @param {number} duration Длительность анимации в миллисекундах, по умолчанию 500
*/
export const appearAnimation = (
duration = 500
): FlattenSimpleInterpolation => css`
animation: ${appearKeyframes} ${duration}ms linear backwards;
`;