Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在慢速连接上,图像在淡入后消失,然后重新出现。
$('#image').load(function(){ $(this).fadeIn(); });
这基本上就是我所做的一切。在快速连接上完美运行,但在慢速连接上,图像在淡入淡出完成后闪烁。关于如何解决这个问题的任何想法?我什至不知道从哪里开始。
我也尝试过waitForImages();和其他一些插件。它似乎没有检测到图像加载,它是某种渲染错误。
waitForImages();
尝试这个:
$(this).css("display", "none"); $(this).fadeIn();