Anime.js v4 发布了
AnimeJs v4 Is Here

原始链接: https://animejs.com/

这段代码片段展示了使用JavaScript动画库实现各种动画效果。它演示了如何为不同类型的元素制作动画,包括正方形、各种形状、沿着运动路径行驶的汽车、SVG路径和点阵。 动画利用旋转、位置(x, y)、缩放和SVG路径变形等属性。主要功能包括循环动画、随机属性值、混合模式、绘制动画和交错动画效果。 该库还提供实用程序来创建用于排序动画的时间线,带有基于弹簧释放效果的可拖动元素,以及与滚动位置同步的滚动触发动画。 此外,它还在范围内使用媒体查询实现响应式动画,以根据设备方向(纵向/横向)调整行为。

Hacker News 用户正在讨论新的 AnimeJs v4 库。一位用户强调了在移动 Safari 上拖动浏览器滚动条时动画更新的流畅性。另一位用户询问了创作工具,并将其与 Lottie 的功能进行了比较,而其他人则表达了普遍的热情。几位评论者称赞了该库的整体流畅性和令人印象深刻之处,特别是其登陆页面和文档。最初的发帖人,大概是开发者,只是在发布后简单地宣布:“Showtime!”
相关文章

原文
animate('.square', {
  rotate: 90,
  loop: true,
  ease: 'inOutExpo',
});
animate('.shape', {
  x: random(-100, 100),
  y: random(-100, 100),
  rotate: random(-180, 180),
  duration: random(500, 1000),
  composition: 'blend',
});
animate('.car', {
  ...createMotionPath('.circuit'),
});

animate(createDrawable('.circuit'), {
  draw: '0 1',
});

animate('.circuit-a', {
  d: morphTo('.circuit-b'),
});
animate(createDrawable('path'), {
  draw: ['0 0', '0 1', '1 1'],
  delay: stagger(40),
  ease: 'inOut(3)',
  autoplay: onScroll({ sync: true }),
});
const options = {
  grid: [13, 13],
  from: 'center',
};

createTimeline()
  .add('.dot', {
    scale: stagger([1.1, .75], options),
    ease: 'inOutQuad',
  }, stagger(200, options));
createDraggable('.circle', {
  releaseEase: createSpring({
    stiffness: 120,
    damping: 6,
  })
});
createTimeline()
  .add('.tick', {
    y: '-=6',
    duration: 50,
  }, stagger(10))
  .add('.ticker', {
    rotate: 360,
    duration: 1920,
  }, '
createScope({
  mediaQueries: {
    portrait: '(orientation: portrait)',
  }
})
.add(({ matches }) => {
  const isPortrait = matches.portrait;
  createTimeline().add('.circle', {
    y: isPortrait ? 0 : [-50, 50, -50],
    x: isPortrait ? [-50, 50, -50] : 0,
  }, stagger(100));
});
  • Timer 5.60 KB
  • Animation +5.20 KB
  • Timeline +0.55 KB
  • Animatable +0.40 KB
  • Draggable +6.41 KB
  • Scroll +4.30 KB
  • Scope +0.22 KB
  • Stagger +0.48 KB
  • SVG 0.35 KB
  • Spring 0.52 KB
  • WAAPI 3.50 KB
联系我们 contact @ memedata.com