最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How to change the color of CircularProgress bar - Stack Overflow

programmeradmin1浏览0评论

I am trying to change the color of circular progress bar provided by AngularMaterial. I have tried changing its color to white using css but it's not working and the color of the progress bar stays BLUE. What am I doing wrong?

.centeredPLEASE_WAIT {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  height: 100%;
  font-size: 20px;
}


.my-circular-progress {
  color: white;
  border-right: #ddd;
  border-left: #ddd;
  border-top: #ddd;
  border-bottom: #ddd;
  background-color: red;
}

            <div class="centeredPLEASE_WAIT">
                <md-progress-circular class="my-circular-progress" md-mode="indeterminate"></md-progress-circular>
            </div>

I am trying to change the color of circular progress bar provided by AngularMaterial. I have tried changing its color to white using css but it's not working and the color of the progress bar stays BLUE. What am I doing wrong?

.centeredPLEASE_WAIT {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  height: 100%;
  font-size: 20px;
}


.my-circular-progress {
  color: white;
  border-right: #ddd;
  border-left: #ddd;
  border-top: #ddd;
  border-bottom: #ddd;
  background-color: red;
}

            <div class="centeredPLEASE_WAIT">
                <md-progress-circular class="my-circular-progress" md-mode="indeterminate"></md-progress-circular>
            </div>
Share Improve this question asked Jan 12, 2017 at 9:41 user2498079user2498079 3,02211 gold badges35 silver badges65 bronze badges 1
  • can u give working url or js fiddle in this? – sansan Commented Jan 12, 2017 at 9:48
Add a ment  | 

2 Answers 2

Reset to default 10

As you probably know you can change progress bar color by adding angular material class (md-warn md-accent etc.) as it is shown in their demo: https://material.angularjs/latest/demo/progressCircular

But if you want to change it manually, you have to change svg image inside md-progress-circular element. You can do this using this selector:

md-progress-circular svg path { stroke: green; }

you will need to update CSS for below class as i have written below. This will make color kind of dark pink.

md-progress-circular.md-default-theme path, md-progress-circular path {
stroke:rgb(150,90,102);
}

you can change RGB as per your need.

发布评论

评论列表(0)

  1. 暂无评论