Bodymovin shows wilder animation

148 Views Asked by At

We have created some animation with Body Movin, all of them works great. The problem we have now is, the Body Movin animation animate really wild compared to what it supposed to animate.

Original Animation: shaking

Bodymovin Animation: shaking-fail

You can test and play around here: https://codepen.io/albertdp/project/editor/AmbRgM

I am calling it the same way it has in the demo.

var animation = bodymovin.loadAnimation({
  container: document.getElementById('bm'),
  renderer: 'canvas',
  loop: true,
  autoplay: true,
  path: 'data.json'
})

Please let me know if you ever encounter the same issue.

1

There are 1 best solutions below

1
On

There is three way to render the animation, maybe you can try :

    var animation = bodymovin.loadAnimation({
            container: document.getElementById('bm'),
            renderer: 'svg',
            loop: true,
            autoplay: true,
            path: 'data.json'
    })