当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript animejs.timeline函数代码示例

本文整理汇总了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,
      })
  }
开发者ID:hbsnow,项目名称:4uing.net,代码行数:20,代码来源:Progress.ts

示例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(() => {
开发者ID:PriceSpider-NeuIntel,项目名称:DefinitelyTyped,代码行数:32,代码来源:animejs-tests.ts


注:本文中的animejs.timeline函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。