I
I
Igor2015-09-26 10:18:19
css
Igor, 2015-09-26 10:18:19

How to make CSS animation workable on iPad?

welovepavel.esy.es/index.html
NrogzNJqsAA.jpg
Thank you!

Answer the question

In order to leave comments, you need to log in

2 answer(s)
A
Alex K, 2015-09-26
@IgorBee

I suspect that the problem is the lack of animation/keyframes prefixes.
Add in 2.css at the bottom:

@-webkit-keyframes animStar {
  from {
    -webkit-transform: translateY(0px);
  }
  to {
    -webkit-transform: translateY(-2000px);
  }
}

And then wherever "animation: animStar..." appears, copy this line and overwrite it with "-webkit-animation: animStar".

D
Denis Ineshin, 2015-09-26
@IonDen

Take a look at this tutorial . Pay attention to how many prefixes are used. I would still use them for a year or two, until all browsers definitely get rid of them.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question