JSFiddle - React, Tailwind, and code Playground
by ianlunn
HTML
<div id="text">
This text will be animated in Opera 12.
</div>
CSS
@-o-keyframes Opera {
100%{
color: red;
}
}
#text{
color: black;
-o-animation: Opera 2s;
}
JavaScript
$(document).ready(function(){
$(document).bind("oanimationend", function(e){
alert(e.type);
});
});