animation-timing-function屬性是用來設定動畫的速度曲線,它可以設定動畫速度為勻速、以低速開始、以低速結束、以低速開始和結束、先慢後快再變慢或是自己自訂數值。
CSS3 animation-timing-function屬性
##作用:
animation-timing-function 規定動畫的速度曲線。速度曲線定義動畫從一組 CSS 樣式變成另一套所用的時間。速度曲線用於使變化更為平滑。語法:
animation-timing-function: value;
說明:
animation-timing-function 使用名為三次貝塞爾(Cubic Bezier )函數的數學函數,來產生速度曲線。您能夠在該函數中使用自己的值,也可以預先定義的值:linear:動畫從頭到尾的速度是相同的。 ease:預設值。動畫以低速開始,然後加快,在結束前變慢。 ease-in:動畫以低速開始。 ease-out:動畫以低速結束。 ease-in-out:動畫以低速開始和結束。 cubic-bezier(n,n,n,n):在 cubic-bezier 函數中自己的值。可能的值是從 0 到 1 的數值。附註:Internet Explorer 9 以及更早的版本不支援 animation-timing-function 屬性。
CSS3 animation-timing-function屬性的使用範例
<!DOCTYPE html> <html> <head> <style> div { width:100px; height:100px; background:red; position:relative; animation:mymove 5s infinite; animation-timing-function:linear; /* Safari and Chrome */ -webkit-animation:mymove 5s infinite; -webkit-animation-timing-function:linear; } @keyframes mymove { from {left:0px;} to {left:200px;} } @-webkit-keyframes mymove /* Safari and Chrome */ { from {left:0px;} to {left:200px;} } </style> </head> <body> <div></div> </body> </html>
以上是animation-timing-function屬性有什麼用的詳細內容。更多資訊請關注PHP中文網其他相關文章!