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


TypeScript core.Renderer類代碼示例

本文整理匯總了TypeScript中angular2/core.Renderer的典型用法代碼示例。如果您正苦於以下問題:TypeScript Renderer類的具體用法?TypeScript Renderer怎麽用?TypeScript Renderer使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了Renderer類的10個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: constructor

 constructor(el: ElementRef, renderer: Renderer) {
   renderer.setElementClass(el.nativeElement, 'btn', true);
   renderer.setElementClass(el.nativeElement, 'btn-primary', true);
 }
開發者ID:Sarvesh19,項目名稱:restlet-sample-angular2-forms,代碼行數:4,代碼來源:form.bootstrap.ts

示例2: constructor

    constructor(public el: ElementRef, public renderer: Renderer) {
        renderer.setElementStyle(el.nativeElement, 'backgroundColor', sessionStorage.getItem("mainColor"));
        renderer.setElementStyle(el.nativeElement, 'border', 'none');

    }
開發者ID:Cathje,項目名稱:begroting_frontend,代碼行數:5,代碼來源:styled.ts

示例3: constructor

 // TypeScript public modifiers
 constructor(public appState: AppState, public router: Router, private _element: ElementRef, private _renderer: Renderer) {
   _renderer.setElementClass(_element.nativeElement, 'initializing', true);
 }
開發者ID:Niaro,項目名稱:trood-demo,代碼行數:4,代碼來源:app.component.ts

示例4: onFocus

 onFocus() {
     this.rnd.setElementStyle(this.el.nativeElement, 'width', '200');
 }
開發者ID:gdebojyoti,項目名稱:angular2-seed,代碼行數:3,代碼來源:auto-grow.directive.ts

示例5: onFocus

 onFocus(){
     this.renderer.setElementStyle(this.ele.nativeElement, 'width','200');
 }
開發者ID:applecool,項目名稱:Angular-Projects,代碼行數:3,代碼來源:auto-grow.directive.ts

示例6: onBlur

 onBlur() {
     this.renderer.setElementStyle(this.el.nativeElement, "width", "120");
 }
開發者ID:maxotek,項目名稱:angular2-learn1,代碼行數:3,代碼來源:auto-grow.directive.ts

示例7: onBlur

 onBlur(){
   this.renderer.setElementStyle(this.el.nativeElement, 'width', '300px');
 }
開發者ID:jforjohn,項目名稱:cern_projects,代碼行數:3,代碼來源:auto-grow.directive.ts

示例8:

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

示例9: ngOnDestroy

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

示例10: onBlur

 onBlur() {
     this.renderer.setElementStyle(this.el.nativeElement, 'width', 'auto')
 }
開發者ID:andivanov,項目名稱:learning-angular-2,代碼行數:3,代碼來源:auto-grow.directive.ts


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