$(function(){
$("#color-box-simple").dxColorBox({
value: "#f05b41"
});
$("#color-box-edit-alpha-channel").dxColorBox({
value: "#f05b41",
editAlphaChannel: true
});
$("#color-box-edit-button-text").dxColorBox({
value: "#f05b41",
applyButtonText: "Apply",
cancelButtonText: "Decline"
});
$("#color-box-read-only").dxColorBox({
value: "#f05b41",
readOnly: true
});
$("#color-box-disabled").dxColorBox({
value: "#f05b41",
disabled: true
});
$("#color-box-with-change-value").dxColorBox({
value: "#f05b41",
applyValueMode: "instantly",
onValueChanged: function (e) {
$(".color-block").css("background-color", e.component.option("value"));
},
onInput: function(e) {
$(".color-block").css("background-color", e.event.target.value);
}
});
});
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>DevExtreme Demo</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script>window.jQuery || document.write(decodeURIComponent('%3Cscript src="js/jquery.min.js"%3E%3C/script%3E'))</script>
<link rel="stylesheet" type="text/css" href="https://cdn3.devexpress.com/jslib/20.2.6/css/dx.common.css" />
<link rel="stylesheet" type="text/css" href="https://cdn3.devexpress.com/jslib/20.2.6/css/dx.light.css" />
<script src="https://cdn3.devexpress.com/jslib/20.2.6/js/dx.all.js"></script>
<link rel="stylesheet" type="text/css" href="styles.css" />
<script src="index.js"></script>
</head>
<body class="dx-viewport">
<div class="demo-container">
<div class="form">
<div class="dx-fieldset">
<div class="dx-field">
<div class="dx-field-label">Default mode</div>
<div class="dx-field-value">
<div id="color-box-simple"></div>
</div>
</div>
<div class="dx-field">
<div class="dx-field-label">With alpha channel editing</div>
<div class="dx-field-value">
<div id="color-box-edit-alpha-channel"></div>
</div>
</div>
<div class="dx-field">
<div class="dx-field-label">Custom button captions</div>
<div class="dx-field-value">
<div id="color-box-edit-button-text"></div>
</div>
</div>
<div class="dx-field">
<div class="dx-field-label">Read only</div>
<div class="dx-field-value">
<div id="color-box-read-only"></div>
</div>
</div>
<div class="dx-field">
<div class="dx-field-label">Disabled</div>
<div class="dx-field-value">
<div id="color-box-disabled"></div>
</div>
</div>
</div>
<div class="dx-fieldset">
<div class="dx-fieldset-header">Event Handling</div>
<div class="hero-block">
<div class="color-block">
<div class="superhero"></div>
</div>
<div class="hero-color-box">
<div id="color-box-with-change-value"></div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>
.form {
min-height: 690px;
}
.form .dx-field-value {
text-align: right;
}
.dx-fieldset-header {
padding: 10px 0;
}
.color-block {
width: 360px;
height: 254px;
background-color: #f05b41;
position: relative;
}
.hero-color-box{
position: absolute;
right: 0;
left: 400px;
top: 110px;
}
.color-block .superhero{
position: absolute;
height: 100%;
width: 100%;
}
.hero-block {
position: relative;
}
.superhero {
background-image: url(../../../../images/hero_white.png);
}
.dx-color-scheme-dark .superhero {
background-image: url(../../../../images/hero_black.png);
}
.dx-color-scheme-darkmoon .superhero {
background-image: url(../../../../images/hero_darkmoon.png);
}
.dx-color-scheme-darkviolet .superhero {
background-image: url(../../../../images/hero_darkviolet.png);
}
.dx-color-scheme-greenmist .superhero {
background-image: url(../../../../images/hero_greenmist.png);
}
.dx-color-scheme-contrast .superhero {
background-image: url(../../../../images/hero_contrast.png);
}
.dx-color-scheme-blue-dark .superhero,
.dx-color-scheme-orange-dark .superhero,
.dx-color-scheme-teal-dark .superhero,
.dx-color-scheme-lime-dark .superhero,
.dx-color-scheme-purple-dark .superhero {
background-image: url(../../../../images/hero_material_dark.png);
}