当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript Renderer.setElementClass方法代码示例

本文整理汇总了TypeScript中@angular/core.Renderer.setElementClass方法的典型用法代码示例。如果您正苦于以下问题:TypeScript Renderer.setElementClass方法的具体用法?TypeScript Renderer.setElementClass怎么用?TypeScript Renderer.setElementClass使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在@angular/core.Renderer的用法示例。


在下文中一共展示了Renderer.setElementClass方法的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: setTimeout

 () => {
          
   this.renderer.setElementClass(lanimation, 'hidden', true);
   this.renderer.setElementClass(lelement, 'hidden', true);
   setTimeout(() => $(lanimation).remove() , 200)
   setTimeout(() => $(lelement).remove() , 200)
 }
开发者ID:cholewa1992,项目名称:ReviewIT,代码行数:7,代码来源:card-init.directive.ts

示例2: mouseLeave

 @HostListener('mouseleave')
 public mouseLeave() {
   if (this.ulChild) {
     this.renderer.setElementClass(this.ulChild, 'js-dropdown-active', false);
     this.renderer.setElementClass(this.el.nativeElement, 'is-active', false);
   }
 }
开发者ID:Neil-Ni,项目名称:ng2-foundation,代码行数:7,代码来源:dropdown-menu-item.directive.ts

示例3: delayTime

  @Input('cardInit')
  set delayTime(loading: Observable<any>) {

    // build additional templating for loader
    this.viewContainerRef.createEmbeddedView(this.templateRef);
    var card = this.templateRef.elementRef.nativeElement.nextSibling;
    var lelement = this.renderer.createElement(card, 'md-card-loading-overlay');
    var lanimation = this.renderer.createElement(card, 'md-card-loading-animation');
    this.renderer.setElementClass(lanimation, 'fa', true);
    this.renderer.setElementClass(lanimation, 'fa-spinner', true);
    this.renderer.setElementClass(lanimation, 'fa-pulse', true);
    this.renderer.setElementClass(lanimation, 'fa-3x', true);
    this.renderer.setElementClass(lanimation, 'fa-fw', true);

    // handle data completion
    loading.subscribe(
      () => { },
      error => {
        this.renderer.setElementClass(lanimation, 'hidden', true);
        var errormsg = this.renderer.createElement(lelement, 'h3');
        this.renderer.setText(errormsg, error);
        setTimeout(() => $(lanimation).remove() , 200)        
      },
      () => {
               
        this.renderer.setElementClass(lanimation, 'hidden', true);
        this.renderer.setElementClass(lelement, 'hidden', true);
        setTimeout(() => $(lanimation).remove() , 200)
        setTimeout(() => $(lelement).remove() , 200)
      }
    )
  }
开发者ID:cholewa1992,项目名称:ReviewIT,代码行数:32,代码来源:card-init.directive.ts

示例4: click

 @HostListener('click')
 public click() {
   if (this.ulChild) {
     this.renderer.setElementClass(this.ulChild, 'js-dropdown-active', true);
     this.renderer.setElementClass(this.el.nativeElement, 'is-active', true);
   }
 }
开发者ID:Neil-Ni,项目名称:ng2-foundation,代码行数:7,代码来源:dropdown-menu-item.directive.ts

示例5: _updateIcon

 private _updateIcon() {
   if (this._isFavorite) {
     this._renderer.setElementClass(this._el.nativeElement, "active", true);
   } else {
     this._renderer.setElementClass(this._el.nativeElement, "active", false);
   }
 }
开发者ID:bGraphic,项目名称:varsom-hybrid,代码行数:7,代码来源:favorite.ts

示例6: updateActiveFlag

 updateActiveFlag(selectedLanguage) {
     if (this.jhiActiveMenu === selectedLanguage) {
         this.renderer.setElementClass(this.el.nativeElement, 'active', true);
     } else {
         this.renderer.setElementClass(this.el.nativeElement, 'active', false);
     }
 }
开发者ID:LuongUC,项目名称:SpringMVCMockProject,代码行数:7,代码来源:active-menu.directive.ts

示例7: setColorClass

 public setColorClass(): void {
   if ( this.object.isGood() ) {
     this.renderer.setElementClass(this.el.nativeElement, 'status-bad', false);
     this.renderer.setElementClass(this.el.nativeElement, 'status-good', true);
   }
   else {
     this.renderer.setElementClass(this.el.nativeElement, 'status-good', false);
     this.renderer.setElementClass(this.el.nativeElement, 'status-bad', true);
   }
 }
开发者ID:uhlibraries-digital,项目名称:brays,代码行数:10,代码来源:status-color.directive.ts

示例8: mouseEnter

 @HostListener('mouseenter')
 public mouseEnter() {
   if (this.ulChild) {
     let siblings = this.el.nativeElement.parentElement.children;
     for (let sibling of siblings) {
       for (let child of sibling.children) {
         this.renderer.setElementClass(child, 'js-dropdown-active', false);
       }
     }
     this.renderer.setElementClass(this.ulChild, 'js-dropdown-active', true);
     this.renderer.setElementClass(this.el.nativeElement, 'is-active', true);
   }
 }
开发者ID:Neil-Ni,项目名称:ng2-foundation,代码行数:13,代码来源:dropdown-menu-item.directive.ts

示例9: ngOnInit

  ngOnInit() {
    let children = this.el.nativeElement.children;

    for (let child of children) {
      if (child.nodeName === 'UL' && child.classList.contains('menu')) {
        this.ulChild = child;
      }
    }

    let topLevel = this.el.nativeElement.parentElement.hasAttribute('dropdown-menu');
    if (!topLevel) {
      this.renderer.setElementClass(this.el.nativeElement, 'is-submenu-item', true);
    }

    if (this.ulChild) {
      this.renderer.setElementClass(this.ulChild, 'is-dropdown-submenu', true);
      this.renderer.setElementClass(this.ulChild, 'menu', true);
      this.renderer.setElementClass(this.ulChild, 'submenu', true);
      this.renderer.setElementClass(this.ulChild, 'vertical', true);

      this.renderer.setElementClass(this.el.nativeElement, 'is-dropdown-submenu-parent', true);
      this.renderer.setElementClass(this.el.nativeElement, 'opens-right', true);

      if (topLevel) {
        this.renderer.setElementClass(this.ulChild, 'first-sub', true);
      }
    }
  }
开发者ID:Neil-Ni,项目名称:ng2-foundation,代码行数:28,代码来源:dropdown-menu-item.directive.ts

示例10: setTimeout

 setTimeout(() => {
   this.renderer.setElementClass(
     this.el.nativeElement,
     animationName,
     false
   );
 }, 600);
开发者ID:bitpay,项目名称:copay,代码行数:7,代码来源:animate.ts


注:本文中的@angular/core.Renderer.setElementClass方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。