我的清晰动画有效,我的显示动画有效,但是当我尝试做一个然后另一个时,它似乎使所有编程都无效。我敢肯定有一个简单的论点,我只是没有看到。
var opac = null;
var removeGif = document.getElementById('splash');
function dissappear (elem, speed) {
if (opac) clearTimeout(opac);
if ( !elem.style.opacity ) {
elem.style.opacity = 1;
}
setTimeout(function() {
setInterval(function() {
elem.style.opacity -= 1;
}, speed / 50);
},10);
}
dissappear(removeGif, 250000);
var folio = document.getElementById('content');
function appear (elem, speed) {
if (opac) clearTimeout(opac);
if ( !elem.style.opacity ) {
elem.style.opacity = 0;
}
setTimeout(function() {
setInterval(function() {
elem.style.opacity += 1;
}, speed / 50);
},10);
}
appear(removeGif, 250000);
如果有人能看到问题,请告诉我。