source: src/components/animate/variants/transition.ts@ 5d6f37a

main
Last change on this file since 5d6f37a was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago

add customer

  • Property mode set to 100644
File size: 727 bytes
Line 
1import { TranHoverType, TranEnterType, TranExitType } from '../types';
2
3// ----------------------------------------------------------------------
4
5export const varTranHover = (props?: TranHoverType) => {
6 const duration = props?.duration || 0.32;
7 const ease = props?.ease || [0.43, 0.13, 0.23, 0.96];
8
9 return { duration, ease };
10};
11
12export const varTranEnter = (props?: TranEnterType) => {
13 const duration = props?.durationIn || 0.64;
14 const ease = props?.easeIn || [0.43, 0.13, 0.23, 0.96];
15
16 return { duration, ease };
17};
18
19export const varTranExit = (props?: TranExitType) => {
20 const duration = props?.durationOut || 0.48;
21 const ease = props?.easeOut || [0.43, 0.13, 0.23, 0.96];
22
23 return { duration, ease };
24};
Note: See TracBrowser for help on using the repository browser.