Created
November 28, 2012 15:23
-
-
Save h4/4161934 to your computer and use it in GitHub Desktop.
Анимированное появление попапа
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Анимированное появление попапа | |
*/ | |
.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) | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- content to be placed inside <body>…</body> --> | |
<div class="popup"></div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// alert('Hello world!'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"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