if use translate and scale for the same time,it will be strange
when I use anime to move a bubble to top and scale it, like
translateY: -100,
duration: 100
},
{
scale: 0.1,
duration: 100,
},
Expect this bubble to shift first and then scale, but the bubble will shift negligible.In transform , it should transform(translate, scale),
but if use anime, it will be transform(scale, translate),