animation
英[ˌænɪˈmeɪʃn] 美[ˌænəˈmeʃən]
n. 怒っている、活発、漫画制作、漫画撮影、[映画とテレビ] アニメーション
複数形: animes
direction
英[dəˈrekʃn] 美[dɪˈrɛkʃən, daɪ-]
n. 方向、傾向、側面; 使用方法
複数形: 指示
css3 animation-direction属性 構文
関数:アニメーションを順番に逆方向に再生するかどうかを定義します。
構文: animation-direction:normal|alternate;
##説明: normal デフォルト値。アニメーションは正常に再生されるはずです。代替アニメーションは順番に逆になります。
注: アニメーションが 1 回だけ再生されるように設定されている場合、この属性は効果がありません。
アニメーションが複数回再生される場合、animation-direction の値をalternateに設定して、アニメーションを逆再生することができます。デフォルトでは、この属性の値は Normal です。つまり、アニメーションは通常どおり再生されます。css3 animation-direction属性 例
<!DOCTYPE html> <html> <head> <style> div { width:100px; height:100px; background:red; position:relative; animation:myfirst 5s infinite; animation-direction:alternate; /* Safari and Chrome */ -webkit-animation:myfirst 5s infinite; -webkit-animation-direction:alternate; } @keyframes myfirst { 0% {background:red; left:0px; top:0px;} 25% {background:yellow; left:200px; top:0px;} 50% {background:blue; left:200px; top:200px;} 75% {background:green; left:0px; top:200px;} 100% {background:red; left:0px; top:0px;} } @-webkit-keyframes myfirst /* Safari and Chrome */ { 0% {background:red; left:0px; top:0px;} 25% {background:yellow; left:200px; top:0px;} 50% {background:blue; left:200px; top:200px;} 75% {background:green; left:0px; top:200px;} 100% {background:red; left:0px; top:0px;} } </style> </head> <body> <p><strong>注释:</strong>Internet Explorer 9 以及更早的版本不支持 animation-direction 属性。</p> <div></div> </body> </html>
インスタンスの実行 »
[インスタンスの実行] ボタンをクリックしてオンライン インスタンスを表示します