我的頁面加載速度很慢,所以我想添加一個加載符號。我有一個加載圖像,現在我只想讓它顯示加載符號,直到它加載。我該怎麼做呢?如何製作加載符號
如何製作加載符號
回答
首先,請不要來Stackoverflow尋找現成的解決方案。嘗試自己解決問題。如果這不起作用,那就來這裏。
解決方案使用jQuery。
$(function(){
$(".loading").delay(1000).hide(); // wait one second, then hide the loading icon, assuming that is has a class of loading.
});
好的,對不起。下一次會有所不同 – NoobCoder
另一件事,如果您的頁面正在加載,添加這可能會加載速度較慢,加載圖標可能不會顯示,直到頁面加載,在這一點上,它是沒有必要的。 – TricksfortheWeb
爲什麼在加載頁面之前加載圖標不顯示?它將顯示何時解析HTML。另外,爲什麼在頁面加載後等待1秒鐘以隱藏加載圖標?您對「現成」解決方案的評論。無論有效,都屬於評論,而不是答案。 –
創建你的形象一個div塊和封裝在另一個div的,其餘內容:
<div id='loadingDiv'>
Loading... <img src='path to loading image' />
</div>
<div id='content'>
...
</div>
確保在CSS#內容設置爲顯示:隱藏;
然後添加以下JS:
$(window).load(function() {
$('#loadingDiv').hide();
$('#content').show();
});
添加口主體標籤下面的DIV權利。
<div class="loader"></div>
現在添加CSS爲類
.loader {
position: fixed;
left: 0px;
top: 0px;
width: 100%;
height: 100%;
z-index: 9999;
background: url('images/page-loader.gif') 50% 50% no-repeat /*image that you want to show at loading time */rgb(249,249,249);
}
後,只是在你的HTML頁面的頭部添加這個腳本..
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script type="text/javascript">
$(window).load(function() {
$(".loader").fadeOut("slow");
})
</script>
'
不建議jQuery的解決問題沒有如此標籤。 –