Skip to content

Instantly share code, notes, and snippets.

@3panda
Created May 13, 2015 00:21
Show Gist options
  • Select an option

  • Save 3panda/72da83e25818fc3bb2ea to your computer and use it in GitHub Desktop.

Select an option

Save 3panda/72da83e25818fc3bb2ea to your computer and use it in GitHub Desktop.
CSS3 animation についてのメモ

#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;

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment