网页载入进度条中的javascript

Posted cxchanpin

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了网页载入进度条中的javascript相关的知识,希望对你有一定的参考价值。

demo地址:http://output.jsbin.com/buquyedosa

思路例如以下:代码都有凝视,就不一一介绍了。

<!DOCTYPE html>
<html>
<head lang="zh-cn">
    <meta charset="UTF-8">
    <title>进度条</title>
<style>
    .progress{
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        height: 20px;
        background: #f5f5f5;
        border-bottom: 1px solid #ddd;
    }

    .progress-inner{
        width: 1%;
        background: #abcdef;
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
    }
</style>
</head>
<body onprogress="">

<div class="progress">
    <div class="progress-inner" id="progress"></div>
</div>

<script>
    (function () {
        // 获取进度条 div
        var $progress = document.getElementById(‘progress‘);

        // 初始进度,1%
        var progress = 1;

        // 生成随机数
        var random = function(min, max){
            return Math.floor(Math.random() * (max - min + 1) + min);
        };

        // 跑进度
        var onprogress = function () {
            // 随机时间
            var timeout = random(10, 30);

            setTimeout(function () {
                // 假设页面载入完成,则直接进度到 100%
                if(window.loaded){
                    $progress.style.width = ‘100%‘;
                    return;
                }

                // 随机进度
                progress += random(1, 5);

                // 随机进度不能超过 98%,以免页面还没载入完成。进度已经 100% 了
                if(progress > 98){
                    progress = 98;
                }

                $progress.style.width = progress + ‘%‘;
                onprogress();
            }, timeout);
        };

        // 開始跑进度
        onprogress();

        window.onload = function(){
            window.loaded = true;
        };
    })();
</script>

<iframe src="http://baidu.com/" frameborder="0"></iframe>
<iframe src="http://163.com/" frameborder="0"></iframe>
<iframe src="http://qq.com/" frameborder="0"></iframe>
<iframe src="http://tencent.com/" frameborder="0"></iframe>

</body>
</html>

以上是关于网页载入进度条中的javascript的主要内容,如果未能解决你的问题,请参考以下文章

android开发_LayerlistDrawable(层叠图片)在进度条中的应用

长度在进度条中显示减号

JavaScript 常用进度条

jquery 进度条,根据指定的值在进度条中显示。各位有没有例子或相关例子。 如下图:想要动态的

从 ffmpeg 获取实时输出以在进度条中使用(PyQt4,stdout)

如何让网页中的JS函数自动执行?