We are currently developing a web application using React with SVG animations. While our SVG animations work perfectly on desktop and Android browsers, they do not animate on iOS devices (specifically tested on Safari on iPhone 5s, 8, and MacBook Pro).
const AnimationFooter = styled.div`
margin-top: -18rem;
height: auto;
width: 100%;
position: relative;
@media (max-width: 420px) {
margin-top: -15rem;
}
@media (max-width: 360px) {
margin-top: -14rem;
}
`;
const Im = styled.img`
width: 100%;
height: auto;
/* -webkit-transform: translateZ(0); */
@media (max-width: 420px) {
margin-top: 6px;
}
`;
<div>
<AnimationFooter>
<Im src="../static/images/home-image-ground.svg" />
</AnimationFooter>
</div>