commit
d1f7c34911
|
@ -11,7 +11,7 @@ var fadeOut = function(node, duration) {
|
||||||
requestAnimationFrame(tick);
|
requestAnimationFrame(tick);
|
||||||
} else {
|
} else {
|
||||||
node.style.opacity = '';
|
node.style.opacity = '';
|
||||||
node.style.display = 'none';
|
node.classList.add('hide');
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -19,10 +19,8 @@ var fadeOut = function(node, duration) {
|
||||||
var fadeIn = function (node, duration) {
|
var fadeIn = function (node, duration) {
|
||||||
if (getComputedStyle(node).display !== 'none') return;
|
if (getComputedStyle(node).display !== 'none') return;
|
||||||
|
|
||||||
if (node.style.display === 'none') {
|
if (node.classList.contains('hide')) {
|
||||||
node.style.display = '';
|
node.classList.remove('hide');
|
||||||
} else {
|
|
||||||
node.style.display = 'block';
|
|
||||||
}
|
}
|
||||||
node.style.opacity = 0;
|
node.style.opacity = 0;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue