animation-name: 選擇器名稱 animation-duration: 完成動畫所需時間 animation-timing-function: 動畫的速度曲線 animation-delay: 動畫開始之前的延遲 animation-iteration-count: 播放的次數 anim ...
animation-name: 選擇器名稱
animation-duration: 完成動畫所需時間
animation-timing-function: 動畫的速度曲線
值 | 描述 | 測試 |
---|---|---|
linear | 動畫從頭到尾的速度是相同的。 | 測試 |
ease | 預設。動畫以低速開始,然後加快,在結束前變慢。 | 測試 |
ease-in | 動畫以低速開始。 | 測試 |
ease-out | 動畫以低速結束。 | 測試 |
ease-in-out | 動畫以低速開始和結束。 | 測試 |
cubic-bezier(n,n,n,n) | 在 cubic-bezier 函數中自己的值。可能的值是從 0 到 1 的數值。 | |
JavaScript 語法: | object.style.animationTimingFunction="linear" |
animation-delay: 動畫開始之前的延遲
animation-iteration-count: 播放的次數
animation-direction: 是否應該輪流反向播放動畫
值 | 描述 | 測試 |
---|---|---|
normal | 預設值。動畫應該正常播放。 | 測試 |
alternate | 動畫應該輪流反向播放。 | 測試 |
CSS語法 | animation-direction: normal|alternate; |
案例:
<!DOCTYPE html> <html> <head> <style> div { width:100px; height:100px; background:red; position:relative; animation:mymove 5s infinite; -moz-animation:mymove 5s infinite; /* Firefox */ -webkit-animation:mymove 5s infinite; /* Safari and Chrome */ -o-animation:mymove 5s infinite; /* Opera */ } @keyframes mymove { from {top:0px;} to {top:200px;} } @-moz-keyframes mymove /* Firefox */ { from {top:0px;} to {top:200px;} } @-webkit-keyframes mymove /* Safari and Chrome */ { from {top:0px;} to {top:200px;} } @-o-keyframes mymove /* Opera */ { from {top:0px;} to {top:200px;} } </style> </head> <body> <p><b>註釋:</b>本例在 Internet Explorer 中無效。</p> <div></div> </body> </html>