在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

不过,好奇地想知道最好的可能性

10-06 08:17