1. 程式人生 > >CSS3實現頁面載入進度條

CSS3實現頁面載入進度條

什麼情況下會使用到頁面載入進度條?

當頁面中的需要載入的內容很多,使用者直接進入則看不到任何內容,體驗不好,這個時候就需要使用到頁面載入的一個動畫,在頁面載入結束後再

顯示主體內容。

實現頁面載入進度條有哪幾種方式?

一般可分為兩種,

1.設定多少時間後顯示頁面,

2.根據頁面載入的文件狀態來實現

 

如何根據文件狀態來實現?

document.onreadystatechange  頁面載入狀態改變時的事件
document.readyState  返回當前文件狀態
1.uninitialized 還未開始載入
2.loading   載入中
3.interactive  已載入,文件與使用者可以開始互動
4.complete  載入完成

<script>
    document.onreadystatechange = function(){
        if (document.readyState === 'complete') {
            alert('頁面載入完成')
        }
    }
</script>

在頁面載入完成後去掉載入動畫即可。

 

載入的小動畫如下:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport"
          content
="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> <title>Title</title> <style> .loading{ position: fixed; width: 100%; height: 100%; top:0; left: 0; z-index: 100; background:#fff; } .loading .pic{ width: 50px; height: 50px; position: absolute; top:
0; bottom: 0; left: 0; right: 0; margin: auto; } .loading .pic i{ display: block; float: left; width: 6px; height: 50px; background: #399; margin: 0 2px; -webkit-transform: scaleY(0.4); -ms-transform: scaleY(0.4); transform: scaleY(0.4); -webkit-animation: load 1.2s infinite; animation: load 1.2s infinite; } .loading .pic i:nth-of-type(2){-webkit-animation-delay:0.1s;animation-delay:0.1s;} .loading .pic i:nth-of-type(3){-webkit-animation-delay:0.2s;animation-delay:0.2s;} .loading .pic i:nth-of-type(4){-webkit-animation-delay:0.3s;animation-delay:0.3s;} .loading .pic i:nth-of-type(5){-webkit-animation-delay:0.4s;animation-delay:0.4s;} @-webkit-keyframes load { 0%,40%,100%{-webkit-transform: scaleY(0.4);transform: scaleY(0.4);} 20%{-webkit-transform: scaleY(1);transform: scaleY(1);} } @keyframes load { 0%,40%,100%{-webkit-transform: scaleY(0.4);transform: scaleY(0.4);} 20%{-webkit-transform: scaleY(1);transform: scaleY(1);} } </style> </head> <body> <div class="loading"> <div class="pic"> <i></i> <i></i> <i></i> <i></i> <i></i> </div> </div> </body> </html>

 

友情提示:CSS3需要寫一些相容的語法,這裡有個網址,直接將CSS程式碼貼上過去就可以獲得所有相容的寫法 http://autoprefixer.github.io/