我正在使用 jQuery 加载填充页面宽度/高度的背景图像。我在头部有以下内容:
$(document).ready(function() {
$('body').css({
'background-image' : 'url({HTML_BASE}images/backgrounds/randoms/{BACK_IMG})',
'background-repeat' : 'no-repeat',
'background-position' : 'center top',
'background-attachment': 'fixed',
'background-size': '100% 100%',
});
$('#home-promo').innerfade({
speed: 'slow',
timeout: 5000,
type: 'sequence',
containerheight: 'auto'
});
$('.model-search').innerfade({
speed: 'slow',
timeout: 5000,
type: 'sequence',
containerheight: '393'
});
});
这工作正常,可以在http://projects.snowshtechnologies.com/golden_dragon/home/看到
我希望 BG 图像从黑色背景颜色淡入。我查看了 Stack 上的其他一些线程,这些线程表明它不可能作为 css 中定义的主体元素,但在这种情况下,BG 图像正在由 jQuery 加载。我将如何在此代码中添加淡入以使图像带有漂亮的淡入淡出效果?