mirror of
https://gitlab.rlp.net/proj-wise2526-video2document/video2document.git
synced 2026-06-15 18:01:52 +02:00
Merge branch 'feature/ui-test' into 'develop'
Added a progressbar See merge request proj-wise2526-video2document/video2document!13
This commit is contained in:
@@ -32,6 +32,11 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<button class="submit-btn" id="submitButton">Submit Video</button>
|
<button class="submit-btn" id="submitButton">Submit Video</button>
|
||||||
|
|
||||||
|
<div class="progressbar">
|
||||||
|
<div class="progress_fill"></div>
|
||||||
|
<span class="progress_text">0%</span>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<script src="script.js"></script>
|
<script src="script.js"></script>
|
||||||
|
|||||||
@@ -29,3 +29,9 @@ function handleFiles(files) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function updateProgressBar(bar, value){
|
||||||
|
value = Math.round(value);
|
||||||
|
bar.querySelector(".progress_fill").style.width = `${value}%`;
|
||||||
|
bar.querySelector(".progress_text").textContent = `${value}%`;
|
||||||
|
}
|
||||||
@@ -108,3 +108,25 @@ h1 {
|
|||||||
align-content: center;
|
align-content: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.progressbar{
|
||||||
|
position: relative;
|
||||||
|
width: 210px;
|
||||||
|
height: 30px;
|
||||||
|
background: darkslategray;
|
||||||
|
border-radius: 5px;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.progress_fill{
|
||||||
|
width: 0%;
|
||||||
|
height: 100%;
|
||||||
|
background: green;
|
||||||
|
transition: all 0.2s;
|
||||||
|
}
|
||||||
|
|
||||||
|
.progress_text{
|
||||||
|
position: absolute;
|
||||||
|
top: 50%;
|
||||||
|
right: 5px;
|
||||||
|
transform: translateY(-50%);
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user