你需要树立自己的形象
display: none;
开始
<img class="background" src="restaurant.jpg" style="display: none;"/>
然后你可以在Javascript中调用它
$(".background").ready(function () {
$(".background").fadeIn("slow");
});
或者像这样
$(document).ready(function() {
$(".background").fadeIn("slow");
});