我跟着this tutorial使用GWT制作动画。由此我能够制作一个投球然后击球的动画。代码是:
protected void play1(){
// Baseball ball animation 1.
//"Hit" the ball to left field
absolutePanel.add(img, 300, 400);
CustomAnimation animation2 = new CustomAnimation(img.getElement());
animation2.scrollTo(10, 10, 5000);
//Place the ball with the pitcher and pitch to the batter.
absolutePanel.add(img, 300, 300);
CustomAnimation animation1 = new CustomAnimation(img.getElement());
animation1.scrollTo(300, 450, 1000);
}
这显示了一个很好的地面球。我想做的是用一个3D效果将一个球击中拱门到同一个位置,以区分地面球和飞球。
我非常感谢您帮助我知道如何做到这一点?