如何在Jupyter制作颜色选择器?

时间:2018-03-30 14:38:25

标签: ipython jupyter-notebook jupyter ipywidgets jupyter-lab

Jupyter笔记本支持这个颜色选择小工具:

widgets.ColorPicker(
    concise=False,
    description='Pick a color',
    value='blue',
    disabled=False
)

看起来像这样:

enter image description here

但不是这样,我想用鼠标通过2D格颜色动态选择颜色:

enter image description here

1 个答案:

答案 0 :(得分:1)

通过单击颜色方块,您已经可以访问可以从中选择的2D颜色窗格。 See the output in ipywidgets documentation

如果您需要另一个颜色选择器,则可以通过完成first-widget(构建窗口小部件的简便方法)来轻松实现自己的窗口小部件,但这可能不值得。