.target : Object
获取动画的目标对象。
myTween.target
.target适用于TweenMaxTweenLite
.box {
width:50px;
height:50px;
border-radius:6px;
margin-top:4px;
display:inline-block
}
.green{
background-color:#6fb936;
}
myTween=new TweenLite('.box', 3, {
x: 500,
});
console.log(myTween.target);