I have applied a transform: -webkit-transform: skewY(170deg) on an element. Its working fine. Afterwards, i add to the skewed element a class that animates a scaleOut. This is the animation:
.partialScaleOutAnimation{
-webkit-animation: partialScaleOut 0.5s;
}
@-webkit-keyframes partialScaleOut {
0%{
-webkit-transform: scale(1);
}
100%{
-webkit-transform: scale(0.3);
}
}
for some reason when applying the animation, the skewed effect disappears. Why?