我有以下 javascript 代码:
$(document).ready(function () {
$(window).load(function () {
var images = ['image_1.jpg', 'image_2.jpg', 'image_3.jpg', 'image_4.jpg', 'image_5.jpg'];
$('h1').fadeIn(2000, function () {
$('body').fadeIn(3000, function () {
$('body').css({
'background-image': 'url(images/' + images[Math.floor(Math.random() * images.length)] + ')'
});
});
});
});
});
链接到我的(我们称之为 a)网站:https ://dl.dropboxusercontent.com/u/46415927/index.html
问题是背景不会在文本之后淡入。有谁知道这个的解决方案?