We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I've run into some issues trying to animate the clickable overfly in firefox.
I started with this example http://codepen.io/ncerminara/pen/EdaBm
Everything works well except for the fadeIn on the overlay. Tested in Safari and Chrome and works fine.
fadeIn
Haven't found a solution yet.
Here's the altered css I used:
.overlay { // Overlay base styles position: fixed; background: rgba(0, 0, 0, 0.75); width: 100%; height: 100%; display: none; z-index: 999999; cursor: pointer; // Set transition for overlay -webkit-transition: all 425ms ease; -moz-transition: all 425ms ease; -ms-transition: all 425ms ease; -o-transition: all 425ms ease; transition: all 425ms ease; // Set the animation duration -webkit-animation-duration: 1.1s; -moz-animation-duration: 1.1s; -ms-animation-duration: 1.1s; -o-animation-duration: 1.1s; animation-duration: 1.1s; // Set the animation fill mode -webkit-animation-fill-mode: both; -moz-animation-fill-mode: both; -ms-animation-fill-mode: both; -o-animation-fill-mode: both; animation-fill-mode: both; // Name the Animation -webkit-animation-name: fadeIn; -moz-animation-name: fadeIn; -ms-animation-name: fadeIn; -o-animation-name: fadeIn; animation-name: fadeIn; } // When is show class is applied // made the overlay display block .scotch-is-showing .overlay { display: block; } // Setup keyframes animations // Chrome @-webkit-keyframes fadeIn { 0% { opacity: 0; } 100% { opacity: 1; } } // Firefox @-moz-keyframes fadeIn { 0% { opacity: 0; } 100% { opacity: 1; } } // Opera @-o-keyframes fadeIn { 0% { opacity: 0; } 100% { opacity: 1; } } // All other browsers @keyframes fadeIn { 0% { opacity: 0; } 100% { opacity: 1; } }
The text was updated successfully, but these errors were encountered:
This isn't technically related to the ScotchPanels core code, but I'll keep it open in case someone has some insight.
Sorry, something went wrong.
No branches or pull requests
I've run into some issues trying to animate the clickable overfly in firefox.
I started with this example http://codepen.io/ncerminara/pen/EdaBm
Everything works well except for the
fadeIn
on the overlay. Tested in Safari and Chrome and works fine.Haven't found a solution yet.
Here's the altered css I used:
The text was updated successfully, but these errors were encountered: