Skip to content

Instantly share code, notes, and snippets.

@mareksotak
Created April 6, 2016 17:47
Show Gist options
  • Save mareksotak/476c883ea3d47aca347c7cecf0b85b3b to your computer and use it in GitHub Desktop.
Save mareksotak/476c883ea3d47aca347c7cecf0b85b3b to your computer and use it in GitHub Desktop.
@-webkit-keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
.inmplayer-popover {
-webkit-animation-name: fadeIn;
animation-name: fadeIn;
-webkit-animation-delay: 0.4s;
-moz-animation-delay: 0.4s;
animation-delay: 0.4s;
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment