jquery.UploadiFive.min.js显示多个文件的进度条中的波动

时间:2015-03-24 11:02:44

标签: javascript jquery

我导入了jquery.UploadiFive.min.js文件,当我尝试一次上传多个文件时,单个进度条显示波动,因为它为每个条目传递了已下载和总计的事件。请建议如何消除波动。

以下是向进度条添加波动的功能

. onProgress : function(file, e) {
    $("#bar_container").show();
    if (e.lengthComputable) {
       var percent = Math.round((e.loaded / e.total) * 100);
    }
    var pos = percent + "%";
    var nooffiles = nofile + 1;
    $(".progresstext").text("Uploading " + nooffiles + " of " + MyFilesTotal);
    $(".progress").animate({ 'width': pos }, 200).text(percent + "%");
}

- Parmanand Punewar 4

0 个答案:

没有答案