本文整理汇总了TypeScript中animejs.timeline函数的典型用法代码示例。如果您正苦于以下问题:TypeScript timeline函数的具体用法?TypeScript timeline怎么用?TypeScript timeline使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了timeline函数的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: createFinishAnimation
private createFinishAnimation(): anime.AnimeTimelineInstance | null {
if (!(this.elem && this.elemBar)) return null
return anime
.timeline({
autoplay: false,
})
.add({
targets: this.elemBar,
strokeDashoffset: [anime.setDashoffset, 0],
easing: 'linear',
duration: 300,
})
.add({
targets: this.elem,
opacity: 0,
easing: 'linear',
duration: 300,
})
}
示例2: anime
duration: () => {
return 1000000000000;
},
update: callback,
complete: callback
})
const someNodes = document.querySelector('button');
const test3 = anime({
targets: someNodes,
top: "-5000000em"
})
const tl = anime.timeline({
loop: false,
direction: 'normal'
})
tl.add({
targets: ".tiny-divvy-div",
scale: 10000000
})
var path = anime.path('#motionPath path');
test1.play();
test2.reverse();
test3.pause();
tl.seek(4000);
tl.finished.then(() => {