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:
606 bytes
|
Line | |
---|
1 | // ----------------------------------------------------------------------
|
---|
2 |
|
---|
3 | export type Props = {
|
---|
4 | staggerIn?: number;
|
---|
5 | delayIn?: number;
|
---|
6 | staggerOut?: number;
|
---|
7 | };
|
---|
8 |
|
---|
9 | export const varContainer = (props?: Props) => {
|
---|
10 | const staggerIn = props?.staggerIn || 0.05;
|
---|
11 | const delayIn = props?.staggerIn || 0.05;
|
---|
12 | const staggerOut = props?.staggerIn || 0.05;
|
---|
13 |
|
---|
14 | return {
|
---|
15 | animate: {
|
---|
16 | transition: {
|
---|
17 | staggerChildren: staggerIn,
|
---|
18 | delayChildren: delayIn,
|
---|
19 | },
|
---|
20 | },
|
---|
21 | exit: {
|
---|
22 | transition: {
|
---|
23 | staggerChildren: staggerOut,
|
---|
24 | staggerDirection: -1,
|
---|
25 | },
|
---|
26 | },
|
---|
27 | };
|
---|
28 | };
|
---|
Note:
See
TracBrowser
for help on using the repository browser.