Skip to content

Instantly share code, notes, and snippets.

@dudelis
Created March 14, 2019 13:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dudelis/ccf72c7841231672e65cd85ad57a567f to your computer and use it in GitHub Desktop.
Save dudelis/ccf72c7841231672e65cd85ad57a567f to your computer and use it in GitHub Desktop.
K2: Zoom In subform
.popup.dialog.sub-form {
-webkit-animation-name: zoomIn;
animation-name: zoomIn;
-webkit-animation-duration: 1s;
animation-duration: 1s;
}
@-webkit-keyframes zoomIn {
0% {
-webkit-transform: scale3d(.3, .3, .3);
opacity: 0;
transform: scale3d(.3, .3, .3)
}
50% {
opacity: 1
}
}
@keyframes zoomIn {
0% {
-webkit-transform: scale3d(.3, .3, .3);
opacity: 0;
transform: scale3d(.3, .3, .3)
}
50% {
opacity: 1
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment