<!DOCTYPE html>
<html>
<head>
<title></title>
<!-- Ignite UI for jQuery Required Combined CSS Files -->
<link href="http://cdn-na.infragistics.com/igniteui/2024.1/latest/css/themes/infragistics/infragistics.theme.css" rel="stylesheet" />
<link href="http://cdn-na.infragistics.com/igniteui/2024.1/latest/css/structure/infragistics.css" rel="stylesheet" />
<!-- Used to style the API Viewer and Explorer UI -->
<link href="/css/apiviewer.css" rel="stylesheet" type="text/css" />
<script src="http://ajax.aspnetcdn.com/ajax/modernizr/modernizr-2.8.3.js"></script>
<script src="http://code.jquery.com/jquery-1.11.3.min.js"></script>
<script src="http://code.jquery.com/ui/1.11.1/jquery-ui.min.js"></script>
<!-- Ignite UI for jQuery Required Combined JavaScript Files -->
<script src="http://cdn-na.infragistics.com/igniteui/2024.1/latest/js/infragistics.core.js"></script>
<script src="http://cdn-na.infragistics.com/igniteui/2024.1/latest/js/infragistics.dv.js"></script>
</head>
<body>
<div >
<h3>サハラ砂漠</h3>
Cº
</div>
<div id="lineargauge" style="width:70%"></div>
<br />
夏の平均気温は 30º C (86º F)、冬の平均気温は 13º C (55º F) です。その他の地域の砂漠に比べ気温が低くなります。月の平均気温が 40º C (104º F) になる月もあり、50º C (122º F) に達することが多々あります。夏の気温では 50º C 以上の日較差を表示します。日中は高温で、夜は 0º C 以下になります。リビアで 58º C (136.4º F) の最高気温を記録しました。
<script type="text/javascript">
$(function () {
/*----------------- Instantiation -------------------------*/
var $lineargauge = $("#lineargauge");
$lineargauge.igLinearGauge({
width: '100%',
height: '80px',
ranges: [
{
name: '寒い',
startValue: -20,
endValue: 0,
brush: '#2788B1',
outerStartExtent: .2,
outerEndExtent: .3
},
{
name: '穏やか',
startValue: 0,
endValue: 20,
brush: '#A4BA29',
outerStartExtent: .3,
outerEndExtent: .4
},
{
name: '暖かい',
startValue: 20,
endValue: 40,
brush: '#FDBD48',
outerStartExtent: .4,
outerEndExtent: .5
},
{
name: '暑い',
startValue: 40,
endValue: 60,
brush: '#D3404B',
outerStartExtent: .5,
outerEndExtent: .6
}
],
showToolTip: true,
minimumValue: -20,
maximumValue: 60,
value: 58,
interval: 10,
tickEndExtent:0.2,
minorTickEndExtent:0.15
});
});
</script>
</body>
</html>