Hi,
I added a css animation to my app.
In ripple emulator the opacity and the scale animation shows up,
in iOS Simulator only the opacity.
.pulsate {
-webkit-animation: pulsate 1.5s linear infinite alternate;
}
@-webkit-keyframes pulsate {
from {
-webkit-transform: scale3d(0.8, 0.8, 1);
opacity: 1;
}
to {
-webkit-transform: scale3d(1.2, 1.2, 1);
opacity: 0.0;
}
}
can anyone tell me whats wrong?
thanks!