当前位置: 首页>>代码示例>>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;未经允许,请勿转载。