jQuery colorpicker 作为具有灰色范围的滑块
我想在我的网站上构建一个 javascript
函数,以在灰度颜色范围内切换文本颜色。我在谷歌上搜索过,但没有找到我想要的东西。我该如何创建范围(可能根据 start
和 end
值计算)并读取滑块上的用户输入以了解要做什么?
干杯!
I want to build a javascript
function on my website to switch the text color within a grey scale of colors. I've searched on google but found nothing as I wanted it. What do I go about creating the range (probably calculated from a start
and end
values) and reading the user input's on a slider to know what to do?
Cheers!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我没有找到任何现成的解决方案,但您可以使用 jQueryI UI 中的 Slider 控件来创建一维颜色选择器。我整理了一个 快速 jsfiddle 来演示。当用户移动滑块时,会触发“slide”事件,并且我的函数会更改 div 的背景颜色。您可以更改滑块和 #color div 的样式以满足您的需求。
I didn't find any ready-made solutions, but you can use the Slider control from jQueryI UI to create a one-dimensional color picker. I put together a quick jsfiddle to demonstrate. When the user moves the slider, the "slide" event fires and my function changes the background color of a div. You can change the styling of the slider and the #color div to suit your needs.