innowed,
Попробуйте вместо
var test = document.createTextNode('@keyframes rotate-colors {100%{-webkit-filter:hue-rotate(360deg);}}html, body{animation:rotate-colors 2s linear infinite;}'); //css стиль
.......
st.appendChild(test); //засовываем css в style
использовать
var test = '@keyframes rotate-colors {100%{-webkit-filter:hue-rotate(360deg);}}html, body{animation:rotate-colors 2s linear infinite;}'; //css стиль
........
st.innerHTML = test;
а поподробнее -
http://professorweb.ru/my/javascript...level2/2_4.php , в самом низу страницы