5

我写了这段 javascript 代码:

context.shadowOffsetX = 5;
context.shadowOffsetY = 5;
context.shadowBlur = 4;
context.shadowColor = 'rgba(255, 0, 0, 0.5)';
context.fillStyle = '#f00';
context.fillRect(x, y, w, h);

我在照片上添加了这个脚本,我想看到图像的颜色,但是不能给这个脚本添加透明度。

4

1 回答 1

17

也尝试制作 fillStyle RGBA。

context.fillStyle = 'rgba(255, 0, 0, 0.5)';
context.fillRect(x, y, w, h);
于 2013-10-02T07:44:06.220 回答