I'm getting error in the code below that says
css - always defines standard rule 'keyframe' when defining keyframe Error
It runs normally in Chrome but is not working in IE 11
@-webkit-keyframes fadeIn {
0% {
opacity: 0;
top: 100px;
}
75% {
opacity: 0.5;
top: 0px;
}
100% {
opacity: 1;
}
}