【发布时间】:2015-03-18 10:14:43
【问题描述】:
我正在尝试加快或删除 Dojo 中标题窗格的wipeIn 和wipeOut 动画。单击标题栏后,内容应立即出现。在其他框架中,我会修改动画速度或持续时间,但到目前为止,我在 dojo 中没有运气。我也尝试过覆盖动画,但没有取得太大的成功。
这是(简化的)我创建 TitlePane 的方式:
require(["dijit/TitlePane", "dojo/dom-construct"], function(TitlePane, domConstruct){
var titlePaneOptions = {};
titlePaneOptions.title = "Some Title";
titlePaneOptions.open = true;
titlePaneOptions.content = "Content";
this._titlePane = new TitlePane(titlePaneOptions);
domConstruct.place(this._titlePane.domNode, this.context.element, "only");
this._titlePane.startup();
});
【问题讨论】:
标签: javascript dojo