add: 共通のアニメーションファイルを追加

This commit is contained in:
yuki540 2018-02-20 16:30:31 +09:00
parent ade257d78c
commit 2e7c16abbb

View File

@ -0,0 +1,8 @@
@keyframes fadein {
0% { opacity: 0; }
100% { opacity: 1; }
}
@keyframes fadeout {
0% { opacity: 1; }
100% { opacity: 0; }
}