I recently ran into a similar issue regarding safari and css3 animations. Safari seems to have problems rewriting single animation properties when defining animations using an abbreviated template. In my case, it was an animation state that could not be changed for safari, so I had to apply the entire animation line at the same time, and not just set the animation mode: running.
to try:
.animator {
width: calc(100% - 100px);
animation: slide 50s linear 1s forwards;
}
The delay goes immediately after the synchronization function.
source
share