本文整理汇总了TypeScript中vs/base/browser/dom.addClasses函数的典型用法代码示例。如果您正苦于以下问题:TypeScript addClasses函数的具体用法?TypeScript addClasses怎么用?TypeScript addClasses使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了addClasses函数的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: infinite
/**
* Use this mode to indicate progress that has no total number of work units.
*/
infinite(): ProgressBar {
this.bit.style.width = '2%';
this.bit.style.opacity = '1';
removeClasses(this.element, css_discrete, css_done);
addClasses(this.element, css_active, css_infinite);
return this;
}
示例2: append
const labelRenderer: ILabelRenderer = (el: HTMLElement): IDisposable | null => {
this.element = append(el, $('a.action-label.icon'));
addClasses(this.element, this.clazz);
this.element.tabIndex = 0;
this.element.setAttribute('role', 'button');
this.element.setAttribute('aria-haspopup', 'true');
this.element.title = this._action.label || '';
return null;
};