css动画不适用于新的dom-element

时间:2015-03-03 14:30:23

标签: javascript dom css-animations

我的css动画不起作用? http://jsbin.com/torococepu/1/edit?js,output

var elem = document.querySelector('.add-elem'),
body = document.querySelector('body');
var addNewElem = function(e) {
var div = document.createElement('div');
div.className = 'new-elem';
body.appendChild( div );
};
elem.addEventListener('click', addNewElem, false);
body.addEventListener( 'DOMNodeInserted',
function(e) { e.target.classList.add('set-height'); }, false);

1 个答案:

答案 0 :(得分:2)

更新

您可以触发自定义动画。 forwardsanimation-fill-mode,它定义了动画完成后的外观。

animation: heightAnimate 1s forwards;

这是动画。

@keyframes heightAnimate {
    from {height: 0px;}
    to {height: 50px;}
}

在此测试:http://jsbin.com/tobulavobi/1/edit

添加设置新高度的类时,可以添加setTimeout。

http://jsbin.com/rawepoguma/1/edit

body.addEventListener( 'DOMNodeInserted', function(e) {
    setTimeout( function () {
        e.target.classList.add('set-height');
    }, 0 );
}, false);