这是我找到的笔:http://codepen.io/GreenSock/pen/Krfod。
TweenMax.to(document.getElementById('creature'), 5, {
bezier: {
type: 'cubic',
values: [{ x: 100, y: 400 }, { x: 400, y: 100 }, { x: 500, y: 500 }, { x: 10, y: 400 }],
autoRotate: ['x', 'y', 'rotation', 0, true]
},
ease: Power1.easeInOut
});
我不知道如何减少框架,我的意思是我唯一需要的部分是:
TweenMax.to(document.getElementById('creature'), 5, {
bezier: {
type: 'cubic',
values: [{ x: 100, y: 400 }],
autoRotate: ['x', 'y', 'rotation', 0, true]
},
ease: Power1.easeInOut
});
但是当我删除其他帧时,它不起作用。任何帮助都会很棒。感谢。