我有一个简单的道场测量仪,我想添加动画,以便在页面加载时针从0移动到它的值。我喜欢elasticOut的缓动选项,但我不知道如何使用它。有人可以帮我实现吗?
此代码段来自我的xpages自定义控件,该控件使用每个指标值的自定义属性。
if (_indType == "Needle") {
gauge.addIndicator(new dojox.widget.gauge.AnalogNeedleIndicator({
'value': parseInt(_indValue),'color': _indColor,'width': parseInt(_indWidth),noChange: true,useRangeStyles: 8
}));
}
答案 0 :(得分:0)
如果可以开箱即用,animationDuration
属性看起来最有可能,请参阅http://dojotoolkit.org/reference-guide/1.10/dojox/dgauges.html。如果没有,您可能需要扩展相关的Dojo小部件类。