Fix Animation on Safari

Fix Animation issue in the LESS file :)
pull/386/head
iae SAUDI 2015-05-01 03:15:22 +03:00
parent c51c10f236
commit 89bc33ce4c
1 changed files with 8 additions and 8 deletions

View File

@ -295,27 +295,27 @@
} }
@-webkit-keyframes flipInX { @-webkit-keyframes flipInX {
0% { 0% {
transform: perspective(400px) rotate3d(1, 0, 0, 90deg); -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transition-timing-function: ease-in; -webkit-transition-timing-function: ease-in;
opacity: 0; opacity: 0;
} }
40% { 40% {
transform: perspective(400px) rotate3d(1, 0, 0, -20deg); -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transition-timing-function: ease-in; -webkit-transition-timing-function: ease-in;
} }
60% { 60% {
transform: perspective(400px) rotate3d(1, 0, 0, 10deg); -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
opacity: 1; opacity: 1;
} }
80% { 80% {
transform: perspective(400px) rotate3d(1, 0, 0, -5deg); -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
} }
100% { 100% {
transform: perspective(400px); -webkit-transform: perspective(400px);
} }
} }