我正在尝试使用 Bodymovin 在浏览器上渲染后效动画。我已经尝试过文档中的示例,但它不起作用。它不显示动画。我正在尝试文档中的示例
<html>
<body>
<div id="bm"></div>
<!-- Scripts -->
<script src="./bodymovin.js"></script>
<script>
var animation = bodymovin.loadAnimation({
container: document.getElementById('bm'),
renderer: 'svg',
loop: true,
autoplay: true,
// path: 'https://raw.githubusercontent.com/airbnb/lottie-web/master/demo/bodymovin/data.json'
path: 'data.json'
})
</script>
</body>
</html>