diff --git a/lottie-ios/Classes/Private/LOTAnimationView.m b/lottie-ios/Classes/Private/LOTAnimationView.m index 993b351fd4..9e80698590 100644 --- a/lottie-ios/Classes/Private/LOTAnimationView.m +++ b/lottie-ios/Classes/Private/LOTAnimationView.m @@ -323,7 +323,7 @@ static NSString * const kCompContainerAnimationKey = @"play"; animation.delegate = self; animation.removedOnCompletion = NO; if (offset != 0) { - animation.beginTime = CACurrentMediaTime() - offset; + animation.beginTime = CACurrentMediaTime() - (offset * 1 / _animationSpeed); } [_compContainer addAnimation:animation forKey:kCompContainerAnimationKey]; _isAnimationPlaying = YES;