As title says i wanna do a page transition like https://allhero.co.jp with framer motion in React Js
i tried:
.anim-page{
&,._red{
position: fixed;
top: 0;
width: 100%;
height: 100%;
z-index:999;
}
&._black{
background-color: black;
}
._red{
background-color: red;
}
}
//-------------------------------------
const page_anim = {
red: {
hidden: { scaleX: 0 },
visible: {
scaleX: [1, 0],
transformOrigin: 'right',
transition: { duration: 0.5, {delay:0.3} },
},
},
black: {
hidden: { right: '100%' },
visible: {
// skewX: ['-25deg', '0deg'],
right: '0%',
transition: { duration: 0.7 },
},
},
}
// -----------------------------------
<motion.div
className='anim-page _black'
variants={page_anim.black}
initial='hidden'
animate='visible'
>
<motion.div className='_red' variants={page_anim.red}></motion.div>
</motion.div>
it kinda looks like that, but i don't know if this is the proper right way of doing it and it doesn't look that much. Importantly i wanna make it reusable. i liked the feature that the black goes away when page is loaded
I think this is a gsap thing, but i did, not that great but i like it
AnimLoading.jsx
bit of scss
App.js
I'm using React Router, this happens all the time route changes...