Animator.prototype.stop()
stop() メソッドは、アニメーションを停止します。アニメーションの実行中でなければ何も起きません。
構文
stop()
引数
なし
返値
なし
例
const core = new jmotion.Core("#board");
const animator = new jmotion.Animator(core);
const pl0 = { "x": 0, "y": -30 };
const pl1 = { "x": -30, "y": 0 };
const pl2 = { "x": 0, "y": 30 };
const pl3 = { "x": 30, "y": 0 };
animator.props = [
{
"init": [],
"loop": [ pl0, pl1, pl2, pl3 ],
}
];
animator.start(0.1);
setTimeout(animator.stop.bind(animator), 2000);