クリアアニメーションは機能し、ディスプレイアニメーションは機能しますが、一方を実行しようとすると、すべてのプログラミングがヌルになるようです。私が見ていなかった単純な議論があると確信しています。
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);
誰かが問題を見ることができるならば、私に知らせてください。