อัปเดต 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 อะไรคือวิธีที่เหมาะสมในการบรรลุเป้าหมายนี้?

คำตอบ:


267

ลองทำตามนี้

 <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>

ว้าว! ง่ายเกินไป!
Boshra N

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>

12

คุณยังสามารถใช้ hostbinding:

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

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

ตอนนี้เมื่อคุณเปลี่ยนคุณสมบัติความกว้างหรือความสูงจากภายใน HomeComponent สิ่งนี้ควรส่งผลต่อแอตทริบิวต์สไตล์


7

คำตอบที่ยอมรับนั้นไม่ถูกต้อง

สำหรับรูปแบบที่จัดกลุ่มคุณสามารถใช้คำสั่ง ngStyle

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

เอกสารอย่างเป็นทางการอยู่ที่นี่


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

ในกรณีของคุณคุณสามารถผูกคุณสมบัติความกว้างและความสูงของคลาส HomeComponent ด้วยคุณสมบัติความกว้างและความสูงสไตล์อินไลน์ของ div เช่นนี้ ... ตามที่กำหนดโดย Sasxa

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

สำหรับการสาธิตการทำงานโปรดดูที่ Plunker นี้ ( 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()ฯลฯ นี่คือยุ่งกับองค์ประกอบของบุคคลที่สาม

ในที่สุดฉันก็พบตัวอย่างจากGünterZöchbauer :

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");
}

คุณสามารถนำเข้า renderer จาก import {Renderer} from '@angular/core';


1
เนื่องจากคำตอบนี้ถูกโพสต์ Renderer จึงเลิกใช้งาน ใช้ Renderer2 แทนและแทนที่ setElementStyle () โดย setStyle ()
Chris

2

คุณสามารถทำได้โดยการเรียกใช้ฟังก์ชันด้วย

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

  getCustomeWidth() {
    //do what ever you want here
    return customeWidth;
  }

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.