This commit is contained in:
2020-02-13 22:24:28 +01:00
parent 9b0c154f61
commit ef23d90eb6
60 changed files with 1665 additions and 930 deletions

View File

@@ -9,7 +9,7 @@ export const zoomFadeIn = (node, { targets, duration }) => {
duration,
easing: 'easeInOutCirc',
opacity: [0, 1],
scale: [.9, 1],
scale: [0.9, 1],
delay: anime.stagger(100)
})
}
@@ -23,7 +23,7 @@ export const zoomFadeOut = (node, { targets, duration }) => {
duration,
easing: 'easeInOutCirc',
opacity: [1, 0],
scale: [1, .9],
scale: [1, 0.9],
delay: anime.stagger(100)
})
}