Answers for "progressbar color change html"

0

how to change progress tag bar color in html

progress::-moz-progress-bar { background: black; }
progress::-webkit-progress-value { background: black; }
progress { color: black; }
Posted by: Guest on September-30-2021
0

ProgressBar from color to color

var bar = new ProgressBar.Line('#container', {
    step: function(state, bar, attachment) {
        bar.path.setAttribute('stroke', state.color);
    }
});

var opts = {
    from: { color: '#000 '},
    to: { color: '#888'}
};
bar.animate(0.5, opts);
Posted by: Guest on October-04-2021

Browse Popular Code Answers by Language