如何使用 GSAP 在对角轴上旋转正方形?

How to rotate a square in diagonal axis using GSAP?

在CSS中进行对角线旋转非常容易。

-webkit-transform: rotate3d(1,1,0,180deg)

http://codepen.io/moorthyrweb/pen/jEayJL

但是,使用 GSAP 我怎样才能达到同样的效果?

我从GSAP论坛上得到了解决方案,其中包含游戏中的两个元素。

TweenMax.set(".gsap",{rotation:45});
TweenMax.set(".container2",{rotation:-45});
TweenMax.to(".container2",1.5,{rotationY:180,repeat:-1});

http://codepen.io/MAW/pen/bNYWbx

仍然很想知道最好的可能性