溫度-垂直-刻度計
# FastWeb 溫度-垂直-刻度計
溫度計讀數指示儀表盤使用的是Canvas Gauges
,這是一套豐富的JS儀表盤元件庫。
使用的溫度計樣式如下:
# 1. 下載示例
點選https://github.com/Mikhus/canvas-gauges/archive/refs/heads/master.zip (opens new window)以下載庫,建議將其中包含的內容解壓縮放置於FastWeb目錄的library/js
資料夾中。
# 2. 確認參數
溫度計儀表盤的樣式內容如下:
<!doctype html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Gauge Test</title>
<link rel="stylesheet" href="library/js/canvas-gauges-master/fonts/fonts.css">
<script src="library/js/canvas-gauges-master/gauge.min.js"></script>
<style>body {
padding: 0;
margin: 0;
background: #fff
}</style>
</head>
<body>
<canvas data-type="linear-gauge"
data-min-value="0"
data-value="23.3"
data-max-value="90"
data-exact-ticks="true"
data-major-ticks="0,13,28,43,70,90"
data-minor-ticks="2"
data-highlights="0"
data-width="100"
data-height="300"
></canvas>
<script>
if (!Array.prototype.forEach) {
Array.prototype.forEach = function(cb) {
var i = 0, s = this.length;
for (; i < s; i++) {
cb && cb(this[i], i, this);
}
}
}
document.fonts && document.fonts.forEach(function(font) {
font.loaded.then(function() {
if (font.family.match(/Led/)) {
document.gauges.forEach(function(gauge) {
gauge.update();
});
}
});
});
</script>
</body>
</html>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
從上述的語言中,可以找到一個名為data-value
的參數,其中得到的值就是半圓形儀表盤指針指向的數值。此處可為其設定參數值為param_value
。
# 3. 修改模板
# 3.1. 本地化處理
上述模板已經將所需的檔案本地化處理,不需要額外進行本地化的相關設定。
# 3.2. 標記參數
將上述的data-value
處后的值使用param_value
來代替,替換后的內容如下:
<!doctype html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Gauge Test</title>
<link rel="stylesheet" href="library/js/canvas-gauges-master/fonts/fonts.css">
<script src="library/js/canvas-gauges-master/gauge.min.js"></script>
<style>body {
padding: 0;
margin: 0;
background: #fff
}</style>
</head>
<body>
<canvas data-type="linear-gauge"
data-min-value="0"
data-value="param_value"
data-max-value="90"
data-exact-ticks="true"
data-major-ticks="0,13,28,43,70,90"
data-minor-ticks="2"
data-highlights="0"
data-width="100"
data-height="300"
></canvas>
<script>
if (!Array.prototype.forEach) {
Array.prototype.forEach = function(cb) {
var i = 0, s = this.length;
for (; i < s; i++) {
cb && cb(this[i], i, this);
}
}
}
document.fonts && document.fonts.forEach(function(font) {
font.loaded.then(function() {
if (font.family.match(/Led/)) {
document.gauges.forEach(function(gauge) {
gauge.update();
});
}
});
});
</script>
</body>
</html>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
上述模板內容已設定完成,可在JQuery元件的模板中匯入上述內容。
# 3.3. 設定參數
在參數界面中,設定上述參數,分別為其設定預設值:
# 3.4. 與資料庫欄位聯動
可以設定數據來源於資料庫欄位,按照以下的格式進行設定,下例以自定義數值為例。