剪切带有文本/无图像的画布元素

时间:2013-04-02 05:26:05

标签: javascript html css canvas transparency

我想创建一个文本透明的元素,div的其余部分是实心的,这样如果它是固定的位置,你可以通过文本看到背景。

我通常只是为此使用alpha映射图像,但是,我需要用户随心所欲地更改此文本,这样无论元素中的文本是什么,它都是透明的。这里的关键是你不能用普通的div在包含文本的元素上有一个实际的背景颜色。

我对画布元素很新,但是我想知道是否可以使用画布元素,如果是这样,你能指出我正确的方向吗?

3 个答案:

答案 0 :(得分:3)

是的,您可以使用画布执行此操作..您可以使用rgba(红色,蓝色,绿色,transparency_value)在透明画布中绘制文本

HTML:

<canvas id="mycanvas" width="200" height="200" style="width:200px; height:200px; border:1px solid;">
</canvas>

脚本:

canvas = document.getElementById('mycanvas');
ctx = canvas.getContext('2d');
ctx.beginPath();
ctx.fillStyle = '#992200';
ctx.rect(0,0,canvas.width,canvas.height);
ctx.fill();
ctx.closePath();

ctx.fillStyle = 'rgba(255,255,255,1)';
ctx.font = '10px verdana';
ctx.textAlign = 'center';
ctx.fillText("No transparency",canvas.width/2,10);

ctx.fillStyle = 'rgba(255,255,255,0.5)';
ctx.font = '10px verdana';
ctx.textAlign = 'center';
ctx.fillText("This is Transparent[0.5]",canvas.width/2,canvas.height/2);

ctx.fillStyle = 'rgba(255,255,255,0.25)';
ctx.font = '10px verdana';
ctx.textAlign = 'center';
ctx.fillText("This is Transparent[0.25]",canvas.width/2,canvas.height - 10);

Live Demo

注意:设置rgba()应该是一个字符串(平均值应该用引号括起来)

  1. 查看fillText()
  2. 查看fillStyle
  3. 查看textAlign

答案 1 :(得分:2)

您也可以使用合成来完成:http://jsfiddle.net/m1erickson/9DLuT/

<!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-image:url("http://images4.fanpop.com/image/photos/23400000/water-water-23444632-2048-1277.jpg"); }
    canvas{border:1px solid red; position:absolute}
</style>

<script>
$(function(){

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

    ctx.save();
    ctx.beginPath();
    ctx.fillStyle="black";
    ctx.rect(0,0,canvas.width,canvas.height);
    ctx.fill();
    ctx.font="144pt Verdana";
    ctx.globalCompositeOperation="xor";
    ctx.beginPath();
    ctx.fillText("See",30,200);
    ctx.fill();
    ctx.restore();


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

</head>

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

答案 2 :(得分:2)

您还可以考虑SVG剪辑蒙版,它更简单,不会遭受画布的“黑匣子”综合症。

我正在努力为你写一些特别针对你问题的东西。

与此同时,您可能会发现这篇文章会有所帮助。 http://demosthenes.info/blog/481/Text-Clipping-Masks-With-SVG