$("#load img").load(function() {
//The picture is hidden by default
$(this).hide();
//Use fadeIn special effect
$(this).fadeIn("5000");
})
When opening a page for the first time, hide the loaded image first, and then execute the animation fadeIn.
The load event here: When all child elements have been completely loaded, the load event is sent to this element.