Styles Colors 颜色 - caleb531/jcanvas-docs GitHub Wiki

Colors 颜色

Color Names 颜色名

$('canvas').drawArc({
  fillStyle: 'darkblue',
  x: 50, y: 50,
  radius: 30
});

Hex Values 十六进制颜色值

$('canvas').drawArc({
  fillStyle: '#009',
  x: 50, y: 50,
  radius: 30
});

RGB Values 红绿蓝色彩值

$('canvas').drawArc({
  fillStyle: 'rgb(0, 0, 153)',
  x: 50, y: 50,
  radius: 30
});

RGBA Values 带透明度的红绿蓝色彩值

$('canvas').drawArc({
  fillStyle: 'rgba(0, 0, 153, 0.5)',
  x: 50, y: 50,
  radius: 30
});