make overall progress bar nicer too
This commit is contained in:
parent
93da22569c
commit
b520304a9d
|
@ -21,9 +21,7 @@
|
||||||
</div>
|
</div>
|
||||||
<div id="progress_container" style="display: none;">
|
<div id="progress_container" style="display: none;">
|
||||||
<div id="progress"></div>
|
<div id="progress"></div>
|
||||||
<div id="progress_bar">
|
<div id="progress_bar"></div>
|
||||||
<div id="progress_bar_filled"></div>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
<div id="file_list_container" style="display: none;">
|
<div id="file_list_container" style="display: none;">
|
||||||
<table id="file_list">
|
<table id="file_list">
|
||||||
|
|
|
@ -14,16 +14,13 @@ body {
|
||||||
margin: 10px auto;
|
margin: 10px auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
#progress_bar, #progress_bar_filled {
|
|
||||||
height: 20px;
|
|
||||||
border-radius: 8px;
|
|
||||||
}
|
|
||||||
#progress_bar {
|
#progress_bar {
|
||||||
|
height: 20px;
|
||||||
|
border-radius: 10px;
|
||||||
border: 1px solid #48f;
|
border: 1px solid #48f;
|
||||||
}
|
background-image: linear-gradient(0deg, #27f, #27f);
|
||||||
#progress_bar_filled {
|
background-repeat: no-repeat;
|
||||||
width: 0;
|
background-size: 0;
|
||||||
background-color: #27f;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
table {
|
table {
|
||||||
|
|
|
@ -15,7 +15,7 @@ const downloadLink = document.getElementById('download_link');
|
||||||
|
|
||||||
const progressContainer = document.getElementById('progress_container');
|
const progressContainer = document.getElementById('progress_container');
|
||||||
const progress = document.getElementById('progress');
|
const progress = document.getElementById('progress');
|
||||||
const progressBarFilled = document.getElementById('progress_bar_filled');
|
const progressBar = document.getElementById('progress_bar');
|
||||||
|
|
||||||
let files = [];
|
let files = [];
|
||||||
|
|
||||||
|
@ -71,8 +71,8 @@ function updateProgress() {
|
||||||
} else {
|
} else {
|
||||||
percentage = `${(bytesSent*100/totalBytes).toFixed(1)}%`;
|
percentage = `${(bytesSent*100/totalBytes).toFixed(1)}%`;
|
||||||
}
|
}
|
||||||
progress.textContent = percentage;
|
progress.textContent = `${percentage} (${displaySize(bytesSent)}/${displaySize(totalBytes)})`;
|
||||||
progressBarFilled.style.width = percentage;
|
progressBar.style.backgroundSize = percentage;
|
||||||
|
|
||||||
const fileEntries = Array.from(fileList.children);
|
const fileEntries = Array.from(fileList.children);
|
||||||
for (entry of fileEntries.slice(0, fileIndex)) {
|
for (entry of fileEntries.slice(0, fileIndex)) {
|
||||||
|
|
Loading…
Reference in a new issue