本文整理匯總了TypeScript中angular2/core.Renderer.setElementClass方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript Renderer.setElementClass方法的具體用法?TypeScript Renderer.setElementClass怎麽用?TypeScript Renderer.setElementClass使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類angular2/core.Renderer
的用法示例。
在下文中一共展示了Renderer.setElementClass方法的10個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: switchState
switchState(){
console.log(this.elRev.nativeElement.classList.contains("glyphicon-star-empty"))
if (this.elRev.nativeElement.classList.contains("glyphicon-star-empty")){
this.renderer.setElementClass(this.elRev.nativeElement, 'glyphicon-star-empty', false);
this.renderer.setElementClass(this.elRev.nativeElement, 'glyphicon-star', true);
}else{
this.renderer.setElementClass(this.elRev.nativeElement, 'glyphicon-star', false);
this.renderer.setElementClass(this.elRev.nativeElement, 'glyphicon-star-empty', true);
}
}
示例2: _updateColor
_updateColor(newColor:string) {
if (this._color != null && this._color != '') {
this.renderer.setElementClass(this.elementRef.nativeElement, `md-${newColor}`, false);
}
if (newColor != null && newColor != '') {
this.renderer.setElementClass(this.elementRef.nativeElement, `md-${newColor}`, true);
}
this._color = newColor;
}
示例3: constructor
constructor(private el: ElementRef, private renderer: Renderer, private win: WindowService) {
let platformClass = 'web';
let agent = win.navigator.userAgent.toLowerCase();
if (agent.indexOf('electron') > -1) {
platformClass = 'desktop';
} else if (agent.indexOf('nativescript') > -1) {
platformClass = 'nativescript';
}
renderer.setElementClass(el.nativeElement, platformClass, true);
}
示例4: constructor
constructor(public element: ElementRef, public renderer: Renderer) {
this.renderer.setElementClass(this.element.nativeElement, 'slds-button', true);
this.renderer.setElementClass(this.element.nativeElement, this.normalize(), true);
}
示例5: _setElementColor
_setElementColor(color: string, isAdd: boolean) {
if (color != null && color != '') {
this.renderer.setElementClass(this.elementRef.nativeElement, `md-${color}`, isAdd);
}
}
示例6:
Object.keys(classes).forEach((key) => {
this.renderer.setElementClass(this.element.nativeElement, key, classes[key]);
});
示例7: _setClass
_setClass(className: string, bool: boolean): void {
this._renderer.setElementClass(this._element.nativeElement, className, bool);
}
示例8: ngOnDestroy
ngOnDestroy() {
this.renderer.setElementClass(this.elRef, 'in', false);
}
示例9: onBlur
onBlur() {
this.renderer.setElementClass(this.el.nativeElement, 'open', false);
}
示例10:
this.getAnimateClassName().forEach((item:string)=>{
this.renderer.setElementClass(this.elRef,item, true);
});