jquery圈中的动态颜色 - 进度

时间:2016-02-17 11:45:07

标签: javascript jquery jquery-ui jquery-plugins

我正在使用jquery circle-progress插件,我希望根据用途颜色为3种颜色,例如颜色应该是橙色从0到10和10到90蓝色和红色如果100并且代码在下面

var c4 = $('.forth.circle');
c4.circleProgress({
    startAngle: -Math.PI / 4 * 3,
    value: 0.1,
    size: 170,
    fill: { color: '#fc5201' }

}); 

1 个答案:

答案 0 :(得分:1)

你必须使用Gradient,它不会对圆圈的部分进行着色,而是背景。我达到了这一点:https://jsfiddle.net/yn6t6cvg/3/

这并不能完全符合您的要求,但也许它会让您朝着正确的方向前进。

<强> HTML

<div class="circles">
  <div class="forth circle">
    <strong></strong>
    <span>custom angle, <br/> value update</span>
  </div>
</div>

<强> CSS

.circle {
  width: 100px;
  margin: 6px 6px 20px;
  display: inline-block;
  position: relative;
  text-align: center;
  line-height: 1.2;
}

.circle canvas {
  vertical-align: top;
}

body {
  background-color: #444;
  padding-top: 40px;
  font: 15px/1.3 Arial, sans-serif;
  color: #fff;
  text-align: center;
}

.circle span {
  display: block;
  color: #aaa;
  margin-top: 12px;
}

<强> JQuery的

$(document).ready(function() {
  var c4 = $('.forth.circle');

  c4.circleProgress({
    startAngle: -Math.PI / 4 * 3,
    value: .75,
    size: 170,
    fill: {
      gradient: [ 
        ["red", .3],
        ["blue", .6],
        ["orange", .3]
      ],
      gradientAngle: Math.PI / 4 * 8.5,
    }
  });
});