Created
June 3, 2016 04:19
-
-
Save naokazuterada/e2d4e7f82dc88ccecd31c0ea684675e3 to your computer and use it in GitHub Desktop.
クラスの付与だけでdisplay:none;からフェードインさせる
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
// クラスの付与だけでdisplay:none;からフェードインさせる | |
@keyframes fade-in | |
0% | |
display: none | |
opacity: 0 | |
1% | |
display: block | |
opacity: 0 | |
100% | |
display: block | |
opacity: 1 | |
// フェードさせたい要素 | |
.visible | |
display: block | |
opacity: 1 | |
animation-duration: 0.2s | |
animation-name: fade-in |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment