In JavaScript it's easy to get the name and properties of CSS animations applied to an element:
var animName = element.style.webkitAnimationName;
// element.style.mozAnimationName
// etc...
But is there a way to read out or even change the CSS keyframes for animations?