animation-fill-mode 属性は、アニメーション効果がアニメーションの再生前または再生後に表示されるかどうかを指定します。
注: 属性値は、カンマで区切られた 1 つ以上の塗りつぶしパターンのキーワードです。
#構文
animation-fill-mode : none | forwards | backwards | both;
値 |
説明 |
h1 要素の塗りつぶしモードを指定します:
<!DOCTYPE html> <html> <head> <style> div { width:100px; height:100px; background:red; animation:myfirst 5s; animation-fill-mode: forwards; -moz-animation:myfirst 5s; /* Firefox */ -webkit-animation:myfirst 5s; /* Safari and Chrome */ -o-animation:myfirst 5s; /* Opera */ } @keyframes myfirst { from {background:red;} to {background:yellow;} } @-moz-keyframes myfirst /* Firefox */ { from {background:red;} to {background:yellow;}
以上がCSSのanimation-fill-modeプロパティの使い方の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。