window.onload = function() {
var currentColor = ko.observable("#f05b41");
var viewModel = {
currentColor: currentColor,
colorBoxSimple: {
value: "#f05b41"
},
colorBoxEditAlphaChannel: {
value: "#f05b41",
editAlphaChannel: true
},
colorBoxEditButtonText: {
value: "#f05b41",
applyButtonText: "Apply",
cancelButtonText: "Decline"
},
colorBoxReadOnly: {
value: "#f05b41",
readOnly: true
},
colorBoxDisabled: {
value: "#f05b41",
disabled: true
},
colorBoxWithChangeValue: {
value: currentColor,
applyValueMode: "instantly"
}
};
ko.applyBindings(viewModel, document.getElementById("color-box-demo"));
};
<!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>
<script src="https://cdnjs.cloudflare.com/ajax/libs/knockout/3.4.2/knockout-min.js"></script>
<link rel="stylesheet" type="text/css" href="https://cdn3.devexpress.com/jslib/20.2.5/css/dx.common.css" />
<link rel="stylesheet" type="text/css" href="https://cdn3.devexpress.com/jslib/20.2.5/css/dx.light.css" />
<script src="https://cdn3.devexpress.com/jslib/20.2.5/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 id="color-box-demo">
<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 data-bind="dxColorBox: colorBoxSimple"></div>
</div>
</div>
<div class="dx-field">
<div class="dx-field-label">With alpha channel editing</div>
<div class="dx-field-value">
<div data-bind="dxColorBox: colorBoxEditAlphaChannel"></div>
</div>
</div>
<div class="dx-field">
<div class="dx-field-label">Custom button captions</div>
<div class="dx-field-value">
<div data-bind="dxColorBox: colorBoxEditButtonText"></div>
</div>
</div>
<div class="dx-field">
<div class="dx-field-label">Read only</div>
<div class="dx-field-value">
<div data-bind="dxColorBox: colorBoxReadOnly"></div>
</div>
</div>
<div class="dx-field">
<div class="dx-field-label">Disabled</div>
<div class="dx-field-value">
<div data-bind="dxColorBox: colorBoxDisabled"></div>
</div>
</div>
</div>
<div class="dx-fieldset">
<div class="dx-fieldset-header">Event Handling</div>
<div class="hero-block">
<div class="color-block" data-bind="style: { backgroundColor: currentColor}">
<div class="superhero"></div>
</div>
<div class="hero-color-box">
<div data-bind="dxColorBox: colorBoxWithChangeValue"></div>
</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);
}