#CSS3 animation についてのメモ
animation-name 名前 animation-duration 秒 animation-timing-function 動き方 animation-delay 遅延(秒) animation-iteration-count 繰り返し回数(無限はinfinite) animation-direction 反転alternate 通常normal
##ショートハンド animation: 'animeA' 1s ease 0s infinite alternate;
複数のkeyframes animation: 'animeA' 1s ease 0s infinite alternate, 'animeB' 2s ease 1s infinite;