在尝试了几个选项后,我无法让文本淡入淡出。无论我尝试什么,整个动画都会冻结,即使添加这样的东西
$("#headertxt".fadeIn('slow').css({"display" : "block"});
或者
$("#headerimg" + currentContainer).fadeOut(function() {
setTimeout(function() {
$("#headertxt".fadeIn({"display" : "block"});
animating = false;
}, 500);
});
$("#headerimg" + currentContainer).fadeOut(function() {
setTimeout(function() {
$("#headertxt".fadeOut({"display" : "block"});
animating = false;
}, 5000);
});
这是原始演示