Products

Responsive JavaScript Color Picker

The fullscreen initiation flag enables the color picker to open in fullscreen mode. By default, jSuites.color automatically activates fullscreen mode for screens smaller than 800 pixels.

<html>
<script src="https://jsuites.net/v5/jsuites.js"></script>
<link rel="stylesheet" href="https://jsuites.net/v5/jsuites.css" type="text/css" />
<input id='color-picker' />
<script>
jSuites.color(document.getElementById('color-picker'), {
    fullscreen: true,
});
</script>
</html>

More Examples