Динамическое обновление css в Angular 2

108

Скажем, у меня есть компонент Angular2

//home.component.ts

import { Component } from 'angular2/core';

@Component({
    selector: "home",
    templateUrl: "app/components/templates/home.component.html",
    styleUrls: ["app/components/styles/home.component.css"]
})
export class HomeComponent {
    public width: Number;
    public height: Number;
} 

HTML-файл шаблона для этого компонента

//home.component.html

<div class="home-component">Some stuff in this div</div>

И, наконец, файл css для этого компонента

//home.component.css

.home-component{
    background-color: red;
    width: 50px;
    height: 50px;
}

Как видите, в классе есть 2 свойства widthи height. Я хотел бы, чтобы стили css для ширины и высоты соответствовали значениям свойств ширины и высоты, а при обновлении свойств - ширине и высоте обновления div. Как правильно это сделать?

tt9
источник

Ответы:

265

Попробуй это

 <div class="home-component" 
 [style.width.px]="width" 
 [style.height.px]="height">Some stuff in this div</div>

[Обновлено]: установить в% использования

[style.height.%]="height">Some stuff in this div</div>
Гаурав Мукерджи
источник
51

Чтобы использовать% вместо px или em с ответом @Gaurav, просто

<div class="home-component" [style.width.%]="80" [style.height.%]="95">
Some stuff in this div</div>
Хелен
источник
18

Это должно сделать это:

<div class="home-component" 
     [style.width]="width + 'px'" 
     [style.height]="height + 'px'">Some stuff in this div</div>
Sasxa
источник
11

Вы также можете использовать hostbinding:

import { HostBinding } from '@angular/core';

export class HomeComponent {
    @HostBinding('style.width') width: Number;
    @HostBinding('style.height') height: Number;
} 

Теперь, когда вы изменяете свойство ширины или высоты внутри HomeComponent, это должно влиять на атрибуты стиля.

11 МБ
источник
7

Принятый ответ не является неправильным.

Для сгруппированных стилей также можно использовать директиву ngStyle.

<some-element [ngStyle]="{'font-style': styleExpression, 'font-weight': 12}">...</some-element>

Официальные документы здесь

JoshuaTree
источник
6

Проверьте рабочую демонстрацию здесь

import {Component,bind} from 'angular2/core';
import {bootstrap} from 'angular2/platform/browser';
import {FORM_DIRECTIVES} from 'angular2/form';

import {Directive, ElementRef, Renderer, Input,ViewChild,AfterViewInit} from 'angular2/core';

@Component({
  selector: 'my-app',
    template: `
    <style>
       .myStyle{
        width:200px;
        height:100px;
        border:1px solid;
        margin-top:20px;
        background:gray;
        text-align:center;
       }
    </style>

          <div [class.myStyle]="my" [style.background-color]="randomColor" [style.width]="width+'px'" [style.height]="height+'px'"> my width={{width}} & height={{height}}</div>
    `,
    directives: []
})

export class AppComponent {
  my:boolean=true;
  width:number=200px;
  height:number=100px;
  randomColor;
  randomNumber;
  intervalId;
  textArray = [
    'blue',
    'green',
    'yellow',
    'orange',
    'pink'
  ];


  constructor() 
  {
    this.start();
  }

      start()
      { 
        this.randomNumber = Math.floor(Math.random()*this.textArray.length);
        this.randomColor=this.textArray[this.randomNumber];
        console.log('start' + this.randomNumber);
        this.intervalId = setInterval(()=>{
         this.width=this.width+20;
         this.height=this.height+10;
         console.log(this.width +" "+ this.height)
         if(this.width==300)
         {
           this.stop();
         }

        }, 1000);
      }
      stop()
      {
        console.log('stop');
        clearInterval(this.intervalId);
        this.width=200;
        this.height=100;
        this.start();

      }
 }

bootstrap(AppComponent, []);
микроники
источник
6

Если вы хотите установить ширину динамически с помощью переменной, используйте фигурные скобки [] вместо {{}}:

 <div [style.width.px]="[widthVal]"  [style.height.px]="[heightVal]"></div>

 <div [style.width.%]="[widthVal]"  [style.height.%]="[heightVal]"></div>
Говинд Самроу
источник
5

Вы можете динамически изменять стиль (ширину и высоту) div, добавляя динамическое значение к встроенным свойствам [style.width] и [style.hiegh] div.

В вашем случае вы можете связать свойство width и height класса HomeComponent со свойством встроенного стиля div width и height, как это ... Как указано Sasxa

<div class="home-component" 
     [style.width]="width + 'px'" 
     [style.height]="height + 'px'">Some stuff in this div
</div>

Для рабочей демонстрации взгляните на этот плункер ( http://plnkr.co/edit/cUbbo2?p=preview )

   //our root app component
import {Component} from 'angular2/core';
import {FORM_DIRECTIVES,FormBuilder,AbstractControl,ControlGroup,} from "angular2/common";

@Component({
  selector: 'home',
  providers: [],
  template: `
     <div class="home-component" [style.width]="width+'px'" [style.height]="height+'px'">Some this div</div>
     <br/>
     <form [ngFormModel]="testForm">
        width:<input type="number" [ngFormControl]="txtWidth"/> <br>
        Height:<input type="number"[ngFormControl]="txtHeight" />
     </form>
  `,
  styles:[`

      .home-component{
        background-color: red;
        width: 50px;
        height: 50px;
    }

  `],
  directives: [FORM_DIRECTIVES]
})
export class App {
  testForm:ControlGroup;
  public width: Number;
  public height: Number;
  public txtWidth:AbstractControl;
  public txtHeight:AbstractControl;

  constructor(private _fb:FormBuilder) {
      this.testForm=_fb.group({
        'txtWidth':['50'],
        'txtHeight':['50']
      });

      this.txtWidth=this.testForm.controls['txtWidth'];
      this.txtHeight=this.testForm.controls['txtHeight'];

      this.txtWidth.valueChanges.subscribe(val=>this.width=val);
      this.txtHeight.valueChanges.subscribe(val=>this.height =val);
  }
}
Джорин
источник
5

Мне понравился вид идеи WenhaoWuI выше, но мне нужно было идентифицировать div с классом .ui-tree в компоненте дерева PrimeNG, чтобы динамически устанавливать высоту. Все ответы , которые я мог бы найти требовалось DIV быть именем (т.е. #treediv) , чтобы включить использование @ViewChild(), @ViewChildren(), @ContentChild(), и @ContentChilden()т.д. Это был грязный с компонентом третьей стороной.

Наконец-то я нашел отрывок из Гюнтера Цохбауэра :

ngAfterViewInit() {
  this.elRef.nativeElement.querySelector('.myClass');
}

Это упростило:

@Input() height: number;
treeheight: number = 400; //default value

constructor(private renderer: Renderer2, private elRef: ElementRef) {  }

ngOnInit() {
    this.loading = true;
    if (this.height != null) {
        this.treeheight = this.height;
    }   
}

ngAfterViewInit() {
    this.renderer.setStyle(this.elRef.nativeElement.querySelector('.ui-tree'), 'height', this.treeheight + "px");
}
Даваус
источник
4

Все приведенные выше ответы прекрасны. Но если вы пытались найти решение, которое не изменит HTML-файлы ниже, полезно

 ngAfterViewChecked(){
    this.renderer.setElementStyle(targetItem.nativeElement, 'height', textHeight+"px");
}

Вы можете импортировать рендерер из import {Renderer} from '@angular/core';

ВенхаоВу
источник
1
Поскольку этот ответ был опубликован, Renderer устарел. Вместо этого используйте Renderer2 и замените setElementStyle () на setStyle ()
Крис
2

вы можете добиться этого, также вызвав функцию

<div [style.width.px]="getCustomeWidth()"></div>

  getCustomeWidth() {
    //do what ever you want here
    return customeWidth;
  }
Шелли
источник
0

В HTML:

<div [style.maxHeight]="maxHeightForScrollContainer + 'px'">
</div>

В Ц

this.maxHeightForScrollContainer = 200 //your custom maxheight
Бхарат чаудхари
источник