mirror of
https://github.com/kremalicious/blog.git
synced 2025-02-14 21:10:25 +01:00
31 lines
400 B
JavaScript
31 lines
400 B
JavaScript
export const fadeIn = {
|
|
enter: {
|
|
opacity: 1
|
|
},
|
|
exit: {
|
|
opacity: 0
|
|
}
|
|
}
|
|
|
|
export const moveInTop = {
|
|
enter: {
|
|
y: 0,
|
|
transition: { type: 'spring' }
|
|
},
|
|
exit: {
|
|
y: '-2rem',
|
|
transition: { type: 'spring' }
|
|
}
|
|
}
|
|
|
|
export const moveInBottom = {
|
|
enter: {
|
|
y: 0,
|
|
transition: { type: 'spring' }
|
|
},
|
|
exit: {
|
|
y: '2rem',
|
|
transition: { type: 'spring' }
|
|
}
|
|
}
|