jqwidgets-framework
Version:
jQWidgets is an advanced Angular, Vue, Blazor, React, Web Components, jquery, ASP .NET MVC, Custom Elements and HTML5 UI framework.
113 lines (106 loc) • 4.42 kB
HTML
<html lang="en">
<head>
<title id='Description'>jqxKnob widget</title>
<link rel="stylesheet" href="../../../jqwidgets/styles/jqx.base.css" type="text/css" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="viewport" content="width=device-width, initial-scale=1 maximum-scale=1 minimum-scale=1" />
<script type="text/javascript" src="../../../scripts/jquery-1.12.4.min.js"></script>
<script type="text/javascript" src="../../../jqwidgets/jqxcore.js"></script>
<script type="text/javascript" src="../../../jqwidgets/jqxdraw.js"></script>
<script type="text/javascript" src="../../../jqwidgets/jqxknob.js"></script>
<script type="text/javascript" src="../../../jqwidgets/jqxnumberinput.js"></script>
<style type="text/css">
#container {
position: relative;
}
.inputField {
left: 110px;
top: 323px;
position: absolute;
background: transparent;
border: none;
}
text.jqx-knob-label {
font-size: 20px;
}
.inputField .jqx-input-content {
background: transparent;
font-size: 20px;
color: grey;
}
</style>
<script type="text/javascript">
$(document).ready(function () {
$('#container').jqxKnob({
value: 60,
min: 0,
max: 100,
startAngle: 120,
endAngle: 420,
snapToStep: true,
rotation: 'clockwise',
style: { stroke: '#dfe3e9', strokeWidth: 3, fill: { color: '#fefefe', gradientType: "linear", gradientStops: [[0, 1], [50, 0.9], [100, 1]] } },
marks: {
colorRemaining: { color: 'grey', border: 'grey' },
colorProgress: { color: '#00a4e1', border: '#00a4e1' },
type: 'line',
offset: '71%',
thickness: 3,
size: '6%',
majorSize: '9%',
majorInterval: 10,
minorInterval: 2
},
labels: {
offset: '88%',
step: 10,
visible: true
},
progressBar: {
style: { fill: '#00a4e1', stroke: 'grey' },
size: '9%',
offset: '60%',
background: { fill: 'grey', stroke: 'grey' }
},
pointer: { type: 'arrow', style: { fill: '#00a4e1', stroke: 'grey' }, size: '59%', offset: '49%', thickness: 20 }
});
var input = $('<div class="inputField">');
$('#container').append(input);
var inputOptions = {
width: 180,
height: '40px',
decimal: 60, // starting value same as widget
min: 0, // same as widget
max: 100, // same as widget
textAlign: 'center',
decimalDigits: 1,
inputMode: 'simple'
};
$(input).jqxNumberInput(inputOptions);
$(input).on('mousedown', function(event){
event.stopPropagation();
});
$(input).on('keyup', function () {
var val = $(this).val();
$('#container').val(val);
});
$(input).on('change', function () {
var val = $(this).val();
$('#container').val(val);
});
$('#container').on('change', function (event) {
if (event.args.changeSource == 'propertyChange' || event.args.changeSource == 'val') { return; }
$(input).val(event.args.value);
})
});
</script>
</head>
<body class='default'>
<div id='container' style="width: 400px; height: 400px;">
</div>
<div style="position: absolute; bottom: 5px; right: 5px;">
<a href="https://www.jqwidgets.com/" alt="https://www.jqwidgets.com/"><img alt="https://www.jqwidgets.com/" title="https://www.jqwidgets.com/" src="https://www.jqwidgets.com/wp-content/design/i/logo-jqwidgets.png"/></a>
</div>
</body>
</html>