I’ve got this code to trigger the animation:
$ionicGesture.on('dragstart', function(event) {
ionic.requestAnimationFrame(function() {
//do something
});
}, elem);
I’ve got the element animating by following SCSS:
@include transition($transition-time ease-in-out);
@include transition-property(transform);
@include transform(translate3d($x, $y, 0));
It’s work perfectly on ios7. However, i got a noticeable delay before the element animating on Android Webview.
Any idea to fix this?
Many thanks,