首页 > 其他 > 详细

Canvas Color

时间:2018-05-08 10:07:21      阅读:167      评论:0      收藏:0      [点我收藏+]

fillStyle = color设置图形的填充颜色。

strokeStyle = color设置图形轮廓的颜色。

// 这些 fillStyle 的值均为 ‘橙色‘
ctx.fillStyle = "orange";
ctx.fillStyle = "#FFA500";
ctx.fillStyle = "rgb(255,165,0)";
ctx.fillStyle = "rgba(255,165,0,1)";

  

function draw() {
  var ctx = document.getElementById(‘canvas‘).getContext(‘2d‘);
  for (var i=0;i<6;i++){
    for (var j=0;j<6;j++){
      ctx.fillStyle = ‘rgb(‘ + Math.floor(255-42.5*i) + ‘,‘ + 
                       Math.floor(255-42.5*j) + ‘,0)‘;
      ctx.fillRect(j*25,i*25,25,25);
    }
  }
}

  技术分享图片

function draw() {
    var ctx = document.getElementById(‘canvas‘).getContext(‘2d‘);
    for (var i=0;i<6;i++){
      for (var j=0;j<6;j++){
        ctx.strokeStyle = ‘rgb(0,‘ + Math.floor(255-42.5*i) + ‘,‘ + 
                         Math.floor(255-42.5*j) + ‘)‘;
        ctx.beginPath();
        ctx.arc(12.5+j*25,12.5+i*25,10,0,Math.PI*2,true);
        ctx.stroke();
      }
    }
  }

  技术分享图片

 

 

Canvas Color

原文:https://www.cnblogs.com/CatYang/p/9006646.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!