-
Notifications
You must be signed in to change notification settings - Fork 767
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Very slow open/close animation #179
Comments
Until the animation is in progress. I don't see any wrong behavior here, cuz these classes should be added, only when the browser tells that the current animation is finished. |
I also have the same problem and it's happens only in Chrome and Opera. When I close the modal, I got delay. Sometimes almost 1 second. It's look strange because CSS animation already complete (it's take only 0.3 second) but interaction with page is blocked. It's look like Chrome na Opera (I think that both based on webkit) have problem with correct detect the end of animation. |
I also have this issue since I updated to v1. A delay that seems long ( 1s ) before I can start scrolling again after closing the modal. |
Well the animation doesn't finish on its own.. After opening the remodal, the content in the popup remains blurry until you click somewhere in it. And after closing it you can't click or scroll the document for a while (>= 1 sec). You're saying this is correct behaviour?? |
Commenting out these lines in the default theme css did the trick for me, although it also did remove the nice transitions. /*.remodal-overlay.remodal-is-opening, .remodal-overlay.remodal-is-opening { .remodal-overlay.remodal-is-closing { /*.remodal.remodal-is-opening, .remodal.remodal-is-opening { .remodal.remodal-is-closing { |
When opening and closing the remodal, the animation takes a very long time to reach the end and the "remodal-is-opened" and "remodal-is-closed" classes aren't added to the containers. If you click inside the modal it kicks in and finishes! Consequenses: When opening this means the modal content remains blurry and when closing it prevents interaction with the parent document since the remodal overlay isn't hidden (until you click somewhere). Can be reproduced in the sample on the remodal homepage.
Chrome 45.0.2454.85 m / Win 7.
The text was updated successfully, but these errors were encountered: