javascript - HTML5 Canvas - 将正方形变成圆形

标签 javascript css html canvas

在 HTML5 Canvas 上,我找不到制作彩色圆圈的方法。我一直在咨询this作为引用。

这是我目前的尝试

var c = document.getElementById("myCanvas");
var ctx = c.getContext("2d");
ctx.fillRect(20, 20, 100, 100);
ctx.lineJoin = "round";
ctx.lineWidth = "cornerRadius";
<canvas id="myCanvas" width="300" height="150" style="border:1px solid #d3d3d3;">

(也在 jsFiddle 上:http://jsfiddle.net/kvnm21r1/1/)

我试过使用 Canvas arc 方法,它创建了一个圆,但没有给它着色。

我不能使用 border-radius 属性,因为 ctx 不是元素。

有什么办法可以把我的正方形变成圆形吗?

提前致谢。

最佳答案

您可以使用二次曲线“圆化”正方形的直线,直到它们形成一个圆。

enter image description here enter image description here enter image description here

// change sideCount to the # of poly sides desired
//
var sideCount = 4;


var canvas = document.getElementById("canvas");
var ctx = canvas.getContext("2d");
ctx.lineWidth = 2;
ctx.fillStyle = randomColor();

var PI2 = Math.PI * 2;
var cx = 150;
var cy = 150;
var radius = 100;

var xx = function (a) {
  return (cx + radius * Math.cos(a));
}
var yy = function (a) {
  return (cy + radius * Math.sin(a));
}
var lerp = function (a, b, x) {
  return (a + x * (b - a));
}

var sides = [];
for (var i = 0; i < sideCount; i++) {
  sides.push(makeSide(i, sideCount));
}

var percent = 0;
var percentDirection = 0.50;

$("#toShape").click(function () {
  percentDirection = -0.50;
})

$("#toCircle").click(function () {
  percentDirection = 0.50;
})

animate();

// functions

function animate() {
  requestAnimationFrame(animate);
  drawSides(percent);
  percent += percentDirection;
  if (percent > 100) {
    percent = 100;
  }
  if (percent < 0) {
    percent = 0;
  }
}

function drawSides(pct, color) {
  ctx.clearRect(0, 0, canvas.width, canvas.height);
  if (pct == 100) {
    ctx.beginPath();
    ctx.arc(cx, cy, radius, 0, PI2);
    ctx.closePath();
    ctx.fill();
  } else {
    ctx.beginPath();
    ctx.moveTo(sides[0].x0, sides[0].y0);
    for (var i = 0; i < sideCount; i++) {
      var side = sides[i];
      var cpx = lerp(side.midX, side.cpX, pct / 100);
      var cpy = lerp(side.midY, side.cpY, pct / 100);
      ctx.quadraticCurveTo(cpx, cpy, side.x2, side.y2);
    }
    ctx.fill();
  }
}

function makeSide(n, sideCount) {
  var sweep = PI2 / sideCount;
  var sAngle = sweep * (n - 1);
  var eAngle = sweep * n;

  var x0 = xx(sAngle);
  var y0 = yy(sAngle);
  var x1 = xx((eAngle + sAngle) / 2);
  var y1 = yy((eAngle + sAngle) / 2);
  var x2 = xx(eAngle);
  var y2 = yy(eAngle);

  var dx = x2 - x1;
  var dy = y2 - y1;
  var a = Math.atan2(dy, dx);
  var midX = lerp(x0, x2, 0.50);
  var midY = lerp(y0, y2, 0.50);
  var cpX = 2 * x1 - x0 / 2 - x2 / 2;
  var cpY = 2 * y1 - y0 / 2 - y2 / 2;

  return ({
    x0: x0,
    y0: y0,
    x2: x2,
    y2: y2,
    midX: midX,
    midY: midY,
    cpX: cpX,
    cpY: cpY,
    color: randomColor()
  });
}

function randomColor() {
  return ('#' + Math.floor(Math.random() * 16777215).toString(16));
}
body{ background-color: ivory; }
canvas{border:1px solid red;}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<button id="toShape">Animate to Shape</button>
<button id="toCircle">Animate to Circle</button><br>
<canvas id="canvas" width=300 height=300></canvas>

关于javascript - HTML5 Canvas - 将正方形变成圆形,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28197718/

相关文章:

javascript - ES6 : Accessing to class'es 'this' from inner local function

javascript - 如何段落绘制到 Canvas 上的文本

javascript - 解密 Javascript 中的字符串

javascript - 带有 AND OR 条件的 jquery 多个选择器

jquery - 如何让图片越过导航栏?

php - 动态更改iframe的src内容

html - Twitter 顶部菜单悬停更改颜色

html - 标题 DIV 之外的标题文本

css - :hover work on textarea in IE8?

python - 导航栏未显示在 bootstrap django 中