CSS
0
Вклад в тег
function addStyle(elementId, animationClassName) {
...
var elem = document.getElementById(elementId);
var father = elem.parentNode;
elem.removeAttribute('style');
var newElem = elem.cloneNode(true);
elem.parentNode.removeChild(elem);
father.appendChild(newElem);
newElem.setAttribute('style', getStyleValue(animationClassName));
}