.timeline
优质
小牛编辑
121浏览
2023-12-01
.timeline : SimpleTimeline
获取父时间轴,所有的动画都依附于时间轴(默认是根时间轴),并只能有一个父时间轴
.timeline适用于TimelineMaxTimelineLite
.timeline的参数
.timeline 示例
.box {
width:50px;
height:50px;
border-radius:6px;
margin-top:4px;
}
.green{
background-color:#6fb936;
}
var tm= new TimelineMax();
tm.data= {name: 'parantTimeline'}
var tm2 = new TimelineMax({onStart: myFunction, onStartParams: ["{self}"]});
tm2.to(".box", 3, {x:500});
tm.add(tm2);
function myFunction(param){
panel = document.getElementById("panel");
panel.innerHTML = '父时间轴是' + param.timeline.data.name
}