到目前为止,我得到了:http://jsfiddle.net/Lt7VN/



但是当我希望它只剪切黑色矩形时,它会剪切/剪切红色和黑色矩形,我该怎么做呢?

context.beginPath();

context.rect(20,20,160,200);
context.fillStyle = "red";
context.fill();

context.beginPath();
context.rect(20,20,150,100);
context.fillStyle = "black";
context.fill();

context.globalCompositeOperation = "destination-out";

context.beginPath();
context.arc(100, 100, 50, 0, 2*Math.PI);
context.fill();

最佳答案

您可以使用合成在1个画布上执行此操作。


画黑色矩形
将合成设置为“擦除”的目的地
画圆弧(抹去黑色矩形的一部分)
将合成设置为“落后”的目标
绘制红色矩形(填充在arc-cut-rect后面。




这是代码和小提琴:http://jsfiddle.net/m1erickson/F4dp3/

<!doctype html>
<html>
<head>
<link rel="stylesheet" type="text/css" media="all" href="css/reset.css" /> <!-- reset css -->
<script type="text/javascript" src="http://code.jquery.com/jquery.min.js"></script>

<style>
    body{ background-color: ivory; }
    #canvas{border:1px solid red;}
</style>

<script>
$(function(){

    var canvas=document.getElementById("canvas");
    var context=canvas.getContext("2d");

    context.save();

    context.beginPath();
    context.rect(20,20,150,100);
    context.fillStyle = "black";
    context.fill();

    context.globalCompositeOperation = "destination-out";

    context.beginPath();
    context.arc(100, 100, 50, 0, 2*Math.PI);
    context.fill();

    context.globalCompositeOperation = "destination-over";

    context.beginPath();
    context.rect(20,20,160,200);
    context.fillStyle = "red";
    context.fill();

    context.restore();

}); // end $(function(){});
</script>

</head>

<body>
    <canvas id="canvas" width=300 height=300></canvas>
</body>
</html>

关于javascript - 如何切割/剪切形状并显示其背后的形状?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/20148600/

10-09 22:56