animation-timing-functionプロパティは、要素にキーフレームアニメーションを適用する場合の、
アニメーションのタイミング・進行割合を指定する際に使用します。
animation-timing-functionでは、アニメーションが継続している際に、
そのアニメーションの進行速度の割合を変更して調整することで動きを滑らかにすることができます。
これは一般的にイージング機能と呼ばれるもので、
グラフィックソフトで曲線を描く際などに利用されるベジェ曲線と呼ばれる数学的な関数を使います。
animation-timing-functionプロパティでは、アニメーションの進行割合を3次ベジェ曲線で指定します。
3次ベジェ曲線は、以下の図のような4つのコントロールポイント(P0、P1、P2、P3)で定義されます。
P0がアニメーションの開始ポイント、P3がアニメーションの完了ポイントで、
横軸がアニメーション継続時間がどこまで経過したのか、縦軸がアニメーションがどの程度実行されたのかを表します。
仮にP0→P3までが直線なら、アニメーションは一定の割合で進行することになります。
P0(開始ポイント)とP3(完了ポイント)は固定なので、
animation-timing-functionプロパティでは、P1とP2の値を指定することでアニメーションの進行割合を調整します。
animation-timing-functionプロパティの値には、
ease、linear、ease-in、ease-out、ease-in-outのいずれかのキーワード、または、
cubic-bezier関数(3次ベジェ関数)でP1とP2それぞれのXとYの値を指定します。
cubic-bezier関数で指定できる値は0~1の範囲内で、その範囲外の場合には無効となります。
尚、キーフレームアニメーションでは、animation-timing-functionプロパティの指定は、
アニメーション全体ではなくキーフレームごとに適用されます。
例えば、ease-in-out(ゆっくり始まってゆっくり終わる)を指定した場合、
アニメーションはキーフレームの開始時にゆっくりになり、キーフレームの終了時にゆっくりになります。
div.sample {
animation-name: anime1;
animation-duration: 5s;
animation-timing-function: ease;
animation-iteration-count: infinite;
}
@keyframes anime1 {
0% {width: 50px; height: 50px; background-color: aqua;}
100% {width: 200px; height: 50px; background-color: blue;}
}
信用 できるオンラインカジノの情報もどうぞご覧ください。
<html>
<head>
<link rel=”stylesheet” href=”sample.css” type=”text/css”>
</head>
<body>
<div class=”sample”>animation効果のサンプル</div>
</body>
</html>
div.prefix_sample {
-moz-animation-name: anime1;
-moz-animation-duration: 5s;
-moz-animation-timing-function: ease;
-moz-animation-iteration-count: infinite;
-webkit-animation-name: anime1;
-webkit-animation-duration: 5s;
-webkit-animation-timing-function: ease;
-webkit-animation-iteration-count: infinite;
-o-animation-name: anime1;
-o-animation-duration: 5s;
-o-animation-timing-function: ease;
-o-animation-iteration-count: infinite;
-ms-animation-name: anime1;
-ms-animation-duration: 5s;
-ms-animation-timing-function: ease;
-ms-animation-iteration-count: infinite;
}
@-moz-keyframes anime1 {
0% {width: 50px; height: 50px; background-color: aqua;}
100% {width: 200px; height: 50px; background-color: blue;}
}
@-webkit-keyframes anime1 {
0% {width: 50px; height: 50px; background-color: aqua;}
100% {width: 200px; height: 50px; background-color: blue;}
}
@-o-keyframes anime1 {
0% {width: 50px; height: 50px; background-color: aqua;}
100% {width: 200px; height: 50px; background-color: blue;}
}
@-ms-keyframes anime1 {
0% {width: 50px; height: 50px; background-color: aqua;}
100% {width: 200px; height: 50px; background-color: blue;}
}
<html>
<head>
<link rel=”stylesheet” href=”sample.css”
type=”text/css”>
</head>
<body>
<div class=”prefix_sample”>animation効果のサンプル</div>
</body>
</html>