在 HTML5 画布上创建颜色选择器
如何在 HTML5 画布上绘制颜色选择器?
How to draw a colorpicker on HTML5 canvas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何在 HTML5 画布上绘制颜色选择器?
How to draw a colorpicker on HTML5 canvas?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
一个基本的例子是使用
getImageData
: http://jsfiddle.net/eGjak/60 /。A basic example would be using
getImageData
: http://jsfiddle.net/eGjak/60/.我在 HCT 上为您创建了一个解决方案。您可以在这里看到它:
http://www.html5canvastutorials.com/labs/ html5-canvas-color-picker/
这个想法是找到您喜欢的颜色选择器图像,然后将其绘制在画布上。在 mousedown 事件中,我们可以获取鼠标坐标,然后使用颜色选择器图像的图像数据来选取颜色。
希望这有帮助!
I created a solution for you on HCT. You can see it here:
http://www.html5canvastutorials.com/labs/html5-canvas-color-picker/
The idea is to find a color picker image that you like and then draw it on the canvas. On the mousedown event, we can get the mouse coordinates and then use the image data of the color picker image to pick out the color.
Hope this helps!
您必须手动绘制颜色。然后需要监听该区域的鼠标点击,然后获取点击位置的颜色。
最大的问题是如何绘制颜色。 绘制色谱中有一些示例。
You have to draw the colors manually. Then you need to listen for mouseclick in that area, and then get the color at the click position.
The biggest problem is how to draw the colors. There are a few examples in Drawing Color Spectrums.