I have a progressbar I implemented through an animated div.
It works well on all browsers I tested, but on the infoscreen it does not show at all:
html
<div id=“progressbarBg” style=“height:10px;”><div id=“progressbar”></div></div>
css
#progressbarBg {
background-color: lightgrey;
width: 100%;
height: 10px;
}
#progressbar {
background-color: orange;
height: 100%;
animation: progress 10s linear;
}
@keyframes progress {
from {width: 0;}
to {width: 100%;}
}