我想在加载一些脚本(backstretch和JQuery Scrollbar)时显示一个'loading'图标或gif,带有完全黑色的背景(透明度)(100%宽度和高度)。加载这些代码后,我希望“Gif加载图标”和黑色背景消失,然后显示整个和普通的网页。我需要做什么?这里有你用于这些脚本的代码。
直道
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/jquery-backstretch/2.0.3/jquery.backstretch.min.js"></script>
<script>
$.backstretch([
"http://www.hqdiesel.net/gallery/albums/userpics/10004/iggy_hqdiesel130~0.jpg"
, "http://www.hqdiesel.net/gallery/albums/userpics/10004/iggy_hqdiesel128~0.jpg"
, "http://www.hqdiesel.net/gallery/albums/userpics/10004/iggy_hqdiesel143~0.jpg"
], {duration: 5000, fade: 750});
</script>
JQuery Scrollbar
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="http://danithemes.fanscity.eu/shugar/wp-content/uploads/2014/11/jquery.mCustomScrollbar.concat.min_.js"></script>
<script>
(function($){
$(window).load(function(){
$(".onliners, .packages").mCustomScrollbar();
});
})(jQuery);
</script>
非常感谢你!我很抱歉我的英语!
答案 0 :(得分:0)
您可以使用CSS将背景图像添加到加载div中,并且只需在加载所有脚本时隐藏该div。
这是js:
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script>
(function($){
$(window).load(function(){
$(".myLoadingDiv").fadeOut(600);
});
})(jQuery);
</script>
这是css:
.myLoadingDiv {
width: 100%;
height: 100%;
background-color: rgba(0,0,0,0.8); /* opacity to your taste */
background-image: url(img/yourGif.gif);
background-repeat: no-repeat;
background-position: 50% 50%;
position: absolute;
left: 0; top: 0;
z-index: 9999; /* at the top of the world */
}