Curious to find out I am able to implement the following webkit-animation into non-webkit browser, such as Firefox, Internet Explorer and Opera? What would the coding be?
@-webkit-keyframes FadeIn {
0% {
opacity:0;
}
100% {
opacity:1;
}
}
.object {
-webkit-animation-name: FadeIn;
-webkit-animation-timing-function: ease-in;
-webkit-animation-duration: 3s;
}
IE does not support the CSS3 Transitions. More advices from here