admin管理员组文章数量:1341406
I have a nice tidy script that cycles through colors and it works nicely with the #xxxxxx
format, but I want to change the transparency. Is there a way to do that?
I'm referring to ctx.strokeStyle()
Here's the current code:
canvas.strokeStyle = '#' + (((16777215 / s.length) * i).toString(16));
It cycles through a for loop with i
incremented by 1
each cycle and it's a part of a switch. The for loop looks like this: for(var i = 0; i < s.length; i++){}
I have a nice tidy script that cycles through colors and it works nicely with the #xxxxxx
format, but I want to change the transparency. Is there a way to do that?
I'm referring to ctx.strokeStyle()
Here's the current code:
canvas.strokeStyle = '#' + (((16777215 / s.length) * i).toString(16));
It cycles through a for loop with i
incremented by 1
each cycle and it's a part of a switch. The for loop looks like this: for(var i = 0; i < s.length; i++){}
- Check this: stackoverflow./questions/8517173/… – Manoj Awasthi Commented Aug 15, 2013 at 9:16
-
@Manoj That seems irrelevant. Isn't this question about
<canvas>
? – Anko Commented Aug 15, 2013 at 9:28 -
This is the current code:
canvas.strokeStyle = '#' + (((16777215 / s.length) * i).toString(16));
I want it to be partially transparent. @ManojAwasthi It's possible in css and some other applications, but I can't find it in JavaScript for<canvas>
– JVE999 Commented Aug 15, 2013 at 10:18
2 Answers
Reset to default 7You can change ctx.globalAlpha
in range of 0 to 1 before drawing each element in opacity you need.
Use ctx.globalAlpha
like Martin Tale answered or rgba([0-255], [0-255], [0-255], [0-1])
format. So you need to convert the integer to individual rgb values:
var color = ((16777215 / s.length) * i);
var r = (color >> 16) & 255;
var g = (color >> 8) & 255;
var b = color & 255;
var alpha = 0.5;
canvas.strokeStyle = "rgba("+r+","+g+","+b+","+alpha+")";
本文标签: javascriptSpecifically change stroke opacity but not color on canvasStack Overflow
版权声明:本文标题:javascript - Specifically change stroke opacity but not color on canvas - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743673016a2519847.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论