0

如何嵌入 bodymovin 导出的文件以做出响应,同时保持徽标和字体的正确纵横比,并适合我网站的边界?有任何想法吗?

先感谢您

4

1 回答 1

2

您可以使用渲染器的 preserveAspectRatio 设置。加载动画时将其作为参数传递:

bodymovin.loadAnimation({
  container: element,
  renderer: 'svg',
  loop: true,
  autoplay: true,
  path: 'path/to/the/json',
  rendererSettings: {
    preserveAspectRatio: 'xMidYMid meet'
  }
});

我猜你想要的是 preserveAspectRatio: 'xMidYMid slice'

于 2017-02-04T14:28:46.877 回答