1
프로젝트에 animate.css를 사용하고 iOS8 모바일 사파리에서 주요로드 블록을 기록했습니다.변환 : iOS 8의 원근감 (#) 모바일 사파리 글리치 및 요소 숨기기
원근법을 사용하는 애니메이션이 작동하지 않습니다. 이는 known issue으로 식별되었지만 솔루션이 제공되지 않았습니다.
참조 용으로 아래의 특정 CSS 코드가 포함되었습니다.
이 문제에 관해서는 아무 것도 발견하지 못했기 때문에 큰 도움이되었습니다.
@-webkit-keyframes flipInX {
0% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
-webkit-transition-timing-function: ease-in;
transition-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
-webkit-transition-timing-function: ease-in;
transition-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
}
100% {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
@keyframes flipInX {
0% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
-ms-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
-webkit-transition-timing-function: ease-in;
transition-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
-ms-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
-webkit-transition-timing-function: ease-in;
transition-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
-ms-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
-ms-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
}
100% {
-webkit-transform: perspective(400px);
-ms-transform: perspective(400px);
transform: perspective(400px);
}
}
.flipInX {
-webkit-backface-visibility: visible !important;
-ms-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipInX;
animation-name: flipInX;
}
불행히도 도움이되지 않습니다. 애니메이션이 깨집니다. 차이점을 비교하려면 [이 펜] (http://codepen.io/meetbryce/pen/WbwoWr)의 CSS에 주석을 달고 주석 처리를 제거하십시오. –
아! 롤. 어쨌든 그들은 분명히 다르다. 그것은 단지 생각이었습니다. 완전히 제거하려고 했습니까? – Todd
불행히도 그것을 고치지 않습니다. 애플이 5 분마다 버그가있는 소프트웨어를 출시하지 않았던 시대를 놓치지 마라. –