微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

如何在 Angular 10 中使用自定义指令设置元素占位符的样式?

如何解决如何在 Angular 10 中使用自定义指令设置元素占位符的样式?

我有一个使用 Element Ref 和 Renderer 2 来设置元素样式的指令。我想知道如何使用渲染器或此指令中的任何其他方式设置占位符的样式。

代码

TextSizeDirective.ts

import { Directive,ElementRef,Input,OnInit,Renderer2 } from '@angular/core';

import { Service } from '../service';

@Directive({
selector: '[textType]'
})

export class TextSizeDirective implements OnInit {

      @input() textType: string;

      constructor(private el: ElementRef,private s:Service,private renderer: Renderer2) {}

      ngOnInit() {

      this.s.getText().subscribe(data => {

      if (data === 'max' && this.textType === 'title') {

        this.renderer.setStyle(this.el.nativeElement,'font-size','25px');

         //How to style placeholder of this element like above?

      }else if (data === 'max' && this.textType === 'text') {

        this.renderer.setStyle(this.el.nativeElement,'16px');
         //How to style placeholder of this element like above?
      } 
    });
  }
}

AppComponent.html

<div>
<h1 [textType]="'title'">heading</h1>
<p [textType]="'text'">Paragraph</p>
<input [textType]="'text'" type="text" placeholder="Placeholder"/>
</div>

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。