Last active
September 25, 2015 16:16
-
-
Save Qs-F/324fde631b0d182308cd to your computer and use it in GitHub Desktop.
css fadein的な奴(このままだと期待通りの動作はしないのでclassの付与とかは自分で行って、noneとblockを切り替えてくださいな)
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
<html> | |
<head> | |
<style> | |
p.loading { | |
display: block; | |
-webkit-animation: disappear 1s; | |
animation-fill-mode: forwards; | |
} | |
p.hidden { | |
display: none; | |
-webkit-animation: appear 1s; | |
animation-fill-mode: forwards; | |
} | |
@-webkit-keyframes disappear{ | |
0% {opacity: 1; display: block;} | |
50% {opacity: .5; display: block;} | |
99% {opacity: 0; display: block;} | |
100% {opacity: 0; display: none;} | |
} | |
@-webkit-keyframes appear { | |
0% {display: none; opacity: 0;} | |
1% {display; block; opacity: 0;} | |
50% {display: block; opacity: .5;} | |
100% {display: block; opacity: 1;} | |
} | |
</style> | |
</head> | |
<body> | |
<p class="loading">こんにちは</p> | |
<p class="hidden">はろはろー</p> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment