I'm making a tool, and I need a menu for color selection.
Could someone tell me how to do?
Something similar to this:
I'm making a tool, and I need a menu for color selection.
Could someone tell me how to do?
Something similar to this:
With HTML5 simply use% color_type color :
Escolha a cor: <input type="color">
Or use a plugin Javascript, such as link
This picker of the particular image is seems to me to be Spectrum . With it, just make the files
<script src='spectrum.js'></script>
<link rel='stylesheet' href='spectrum.css' />
and make the call as a jQuery plugin in your selector, something like:
$("#custom").spectrum({
color: "#f00"
});