有人可以帮助我,我正在使用jquery启动画面加载页面加载,此刻有一个名为启动画面的div在启动时加载,但我想在下面的脚本中添加div calle包装,所以两个div加载,我怎么能这样做?
谢谢
(函数($){
$.fn.splashScreen = function(settings){
// Providing default options:
settings = $.extend({
textLayers : [],
textShowTime : 1500,
textTopOffset : 80
},settings);
var promoIMG = this;
// Creating the splashScreen div.
// The rest of the styling is in splashscreen.css
var splashScreen = $('<div>',{
id : 'splashScreen',
css:{
backgroundImage : promoIMG.css('assets/img/drop.jpg'),
backgroundPosition : 'center '+promoIMG.offset().top+'px',
height : $(document).height()
}
});
答案 0 :(得分:0)
我认为你必须将启动画面div添加到正文中?
$("body").append(splashScreen);
然后对你的第二个div做同样的事情?他们两个都附加?也许我没有正确理解。