有谁知道如何让JustGage对象响应? 请检查下面的链接,我用raphael解决了这个问题但是不能用JustGage做同样的事情:
window.onload = function () {
var g1 = new JustGage({
id: "g1",
value: getRandomInt(0, 4000),
min: 0,
max: 4000,
title: "Well over thousand",
label: ""
});
}
答案 0 :(得分:4)
只需将relativeGaugeSize: true
添加到您的代码中
无需固定高度
#g1 {
/* width: 400px; */
/* height:300px; */
}
脚本
var g1 = new JustGage({
id: "g1",
value: getRandomInt(0, 4000),
min: 0,
max: 4000,
title: "Well over thousand",
label: "",
relativeGaugeSize: true
});