Add animation

This commit is contained in:
syuilo
2019-03-01 14:24:12 +09:00
parent ae2d707c68
commit 0c28ac4907
4 changed files with 9 additions and 0 deletions

View File

@@ -39,3 +39,9 @@
75% { transform: translateY(-8px); }
100% { transform: translateY(0); }
}
@keyframes blink {
0% { opacity: 1; }
30% { opacity: 1; }
90% { opacity: 0; }
}