onUpdate
优质
小牛编辑
133浏览
2023-12-01
onUpdate: Function
当动画发生改变时(动画进行中的每一帧)不停的触发此事件。
TweenMax.to('.box', 3, {
x: 500,
onUpdate:function(){
...
}
});
onUpdate适用于TweenMaxTweenLite
onUpdate的参数
onUpdate 示例
动画进行时间:0秒
body {
background: #f8f8f8;
font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
font-size: 14px;
color: #000;
margin: 0 10px;
padding: 0;
}
.box {
width:50px;
height:50px;
border-radius:6px;
margin-top:4px;
display:inline-block
}
.green{
background-color:#6fb936;
}
var timeView = document.getElementById("time");
new TweenMax('.box', 3, {
x: 500,
onUpdate:function(){
timeView.innerHTML=this.time().toFixed(2);
}
});
onUpdate返回值
onUpdate的补充说明
delay时不会触发,repeatDelay时会触发。