Skip to content

Instantly share code, notes, and snippets.

@h4
Created November 28, 2012 15:23
Show Gist options
  • Save h4/4161934 to your computer and use it in GitHub Desktop.
Save h4/4161934 to your computer and use it in GitHub Desktop.
Анимированное появление попапа
/**
* Анимированное появление попапа
*/
.popup {
width: 500px;
height: 500px;
margin: 30px;
background: #900;
animation: 'fadeIn' 1s 0 4;
transform-origin: 10px 0;
border-radius: 5px;
}
@keyframes 'fadeIn' {
0% {
transform: scale(0.1, 0.1);
}
80% {
transform: scale(1.1, 1.1);
}
100% {
transform: scale(1, 1)
}
}
<!-- content to be placed inside <body>…</body> -->
<div class="popup"></div>
// alert('Hello world!');
{"view":"split-vertical","fontsize":"100","seethrough":"","prefixfree":"1","page":"all"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment