テンプレート:Fade/style.css

提供:WikiWiki
4年1月7日 (ゐ) 21:06時点におけるキュアラプラプ (トーク | 投稿記録)による版
ナビゲーションに移動 検索に移動
@keyframes fade {
	0% {display:none}
	75% {display:none}
	100% {display:inline}
}
.fade{
	animation: fade ease-in;
	animation-fill-mode: forwards;
}