當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript Renderer.setElementClass方法代碼示例

本文整理匯總了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);
     }
 }
開發者ID:tdraebing,項目名稱:Udemy_Angular2,代碼行數:10,代碼來源:favstar.directive.ts

示例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;
    }
開發者ID:rxlabz,項目名稱:angular2-typescript-basics,代碼行數:11,代碼來源:toolbar.ts

示例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);
 }
開發者ID:EdZava,項目名稱:angular2-seed-advanced,代碼行數:10,代碼來源:platform.directive.ts

示例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);
 }
開發者ID:QuinntyneBrown,項目名稱:ng-lightning,代碼行數:4,代碼來源:button-icon.ts

示例5: _setElementColor

 _setElementColor(color: string, isAdd: boolean) {
   if (color != null && color != '') {
     this.renderer.setElementClass(this.elementRef.nativeElement, `md-${color}`, isAdd);
   }
 }
開發者ID:9590,項目名稱:material2,代碼行數:5,代碼來源:toolbar.ts

示例6:

 Object.keys(classes).forEach((key) => {
     this.renderer.setElementClass(this.element.nativeElement, key, classes[key]);
 });
開發者ID:fellswoop,項目名稱:angular-project-template,代碼行數:3,代碼來源:base.ts

示例7: _setClass

 _setClass(className: string, bool: boolean): void {
   this._renderer.setElementClass(this._element.nativeElement, className, bool);
 }
開發者ID:ashokacharya,項目名稱:material2,代碼行數:3,代碼來源:list.ts

示例8: ngOnDestroy

 ngOnDestroy() {
   this.renderer.setElementClass(this.elRef, 'in', false);
 }
開發者ID:wanliyuan,項目名稱:dwy-angular2starter,代碼行數:3,代碼來源:AnimationComponent.ts

示例9: onBlur

 onBlur() {
     this.renderer.setElementClass(this.el.nativeElement, 'open', false);
 }
開發者ID:technobia,項目名稱:angular2-seed,代碼行數:3,代碼來源:auto-grow.directive.ts

示例10:

 this.getAnimateClassName().forEach((item:string)=>{
   this.renderer.setElementClass(this.elRef,item, true);
 });
開發者ID:wanliyuan,項目名稱:dwy-angular2starter,代碼行數:3,代碼來源:AnimationComponent.ts


注:本文中的angular2/core.Renderer.setElementClass方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。