cssアニメーションをプログラムで定義して開始する方法はありますか? ある絶対位置から別の絶対位置に div をアニメーション化したいと思います。何かのようなもの:
FlowPanel fp = new FlowPanel();
fp.getElement().getStyle().setPosition(Position.ABSOLUTE);
fp.getElement().getStyle().setLeft(50, Style.Unit.PX);
fp.getElement().getStyle().setTop(50, Style.Unit.PX);
...
// something like:
fp.setAnimation("top: 300px");
css ファイルで css アニメーションを定義できることがわかりました。div のスタイルの名前を変更すると、アニメーションがトリガーされます。しかし、css で定義されたアニメーションをプログラムで変更できるかどうかはわかりません。例えば:
// css file
.testAnimation {
top: 500px;
transition-property: top;
transition-duration: 1s;
}
...
// But we can't modify the "top" attribute here depending on runtime needs?:
fp.setStyleName("testAnimation"); // I may want "top" to be some other value here.
ありがとう