最佳答案
这是一个jsfiddle
div
{
height:50px;
width:100%;
background: repeating-linear-gradient(90deg,
transparent, transparent .25em /* black stripe */,
#EA9949 0, #EA9949 .75em /* blue stripe */
);
}
更新资料
这是使其运作的方法jsfiddle
function setProgressbarValue(currentValue,MaxValue)
{
var percentage = ((currentValue/MaxValue) * 100) ;
if (percentage <= 0)
percentage = 0;
else if (percentage >= 100)
percentage = 100;
return parseInt(percentage);
}
关于javascript - 在水平进度条上引导多个条,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/40015924/