I have created a modal box, and works fine! After, i resolve insert a fadeInUp effect, using css keyframes. But, after make this, the modal box lost the centered position.
Can anyone help me resolve this? Thanks in advance!
I have created a modal box, and works fine! After, i resolve insert a fadeInUp effect, using css keyframes. But, after make this, the modal box lost the centered position.
Can anyone help me resolve this? Thanks in advance!
In your demo you added in a CSS animation which contained this:
This overwrites your translate(-50%, -50%) which is set before the animation runs.
If you change it to:
You get the same effect but you don't overwrite your centering offset!
Demo here