CSS3トランジションの仕様では、加速度の標準ベジェ曲線は次のように定義されています。
The ease function is equivalent to cubic-bezier(0.25, 0.1, 0.25, 1.0) The linear function is equivalent to cubic-bezier(0.0, 0.0, 1.0, 1.0) The ease-in function is equivalent to cubic-bezier(0.42, 0, 1.0, 1.0) The ease-out function is equivalent to cubic-bezier(0, 0, 0.58, 1.0) The ease-in-out function is equivalent to cubic-bezier(0.42, 0, 0.58, 1.0)
これらの曲線をどのように視覚化できますか?私はそれらを見たいです(ここのように:http://hosted.zeh.com.br/tweener/docs/en-us/misc/transitions.html)。
キュービックベジェ関数には4つのポイントがありますが、値は1つだけです。しかし、曲線を描くには、それぞれにxとyが必要ですか?