Skip to content
Advertisement

Transition animation does not works properly on Safari

I used CSS transition for create the Fade Up animation effect. Here is the code:

JavaScript

For addding active to the block I used:

JavaScript

And this animation works well on Firefox, Opera, and of course Chrome. But there is some issue on iPhone. Here is example: https://gyazo.com/1bd0bdb42fd7d043b404cd868b35e90b as you can see the block Fade Up but after disappears and reappears. Maybe the JavaScript cause the issue?

Advertisement

Answer

There are multiple transition css properties and the last one will overwrite thr previouse ones. You can comma seperate the transition targets like this:

JavaScript

So in your example it would be

JavaScript
User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement