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


TypeScript Renderer.setElementAttribute方法代碼示例

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


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

示例1: ngAfterViewInit

  ngAfterViewInit() {
    var canvas: any = this.cropcanvas.nativeElement;

    if (!this.settings) {
      this.settings = new CropperSettings();
    }

    this.renderer.setElementAttribute(canvas, 'width', this.settings.canvasWidth.toString());
    this.renderer.setElementAttribute(canvas, 'height', this.settings.canvasHeight.toString());

    this.cropper = new ImageCropper(canvas, 0, 0,
      this.settings.width, this.settings.height,
      this.settings.croppedWidth, this.settings.croppedHeight);

  }
開發者ID:Toktik,項目名稱:angular2-img-cropper,代碼行數:15,代碼來源:imageCropper.ts

示例2: constructor

 constructor(
   public platform: Platform,
   public elementRef: ElementRef,
   public renderer: Renderer) {
   this.isAndroid = platform.is('android');
   renderer.setElementAttribute(elementRef.nativeElement, 'primary', this.isAndroid ? '' : null);
 }
開發者ID:uiktiomasfeliz,項目名稱:Generic,代碼行數:7,代碼來源:global.helpers.ts

示例3: ngOnInit

 ngOnInit() {
   let w: any;
   let h: any;
   if (this.dimensions) {
     let d = this.dimensions.split('x');
     w = d[0];
     h = d[1];
   } else if (this.width && this.height) {
     w = this.width;
     h = this.height;
   } else {
     this.error();
   }
   if (w && h) {
     this.renderer.setElementAttribute(this.el.nativeElement, 'src', this.pusherGifService.createGif(w, h));
   }
 }
開發者ID:NathanWalker,項目名稱:ng2-img-pusher-gif,代碼行數:17,代碼來源:img-pusher-gif.directive.ts

示例4: onBlur

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

示例5: ngAfterViewInit

 ngAfterViewInit() {
   this._renderer.setElementAttribute(this.el.nativeElement, "newAtt", "");
 }
開發者ID:vallsargente,項目名稱:angular2-experiments,代碼行數:3,代碼來源:add-attribute.component.ts

示例6: onBlur

 onBlur(){
     this.renderer.setElementAttribute(this.el,'width','120')
 }
開發者ID:sampathsl,項目名稱:angular2-seed,代碼行數:3,代碼來源:autogrow.directive.ts

示例7: onFocus

 onFocus(){
     this.renderer.setElementAttribute(this.el,'width','200')
 }
開發者ID:sampathsl,項目名稱:angular2-seed,代碼行數:3,代碼來源:autogrow.directive.ts

示例8:

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

示例9: constructor

 constructor(private el: ElementRef, private renderer: Renderer) {
   renderer.setElementAttribute(el.nativeElement, 'class', 'sample-class');
 }
開發者ID:jesperronn,項目名稱:angular2-library-seed,代碼行數:3,代碼來源:sample.directive.ts


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