如何在角度变量上放置样式

时间:2019-07-11 08:54:03

标签: ionic-framework

你好,我想在img上放置样式不透明度:0.3

  <ion-content [style]="getBackgroundImg()">  

  getBackgroundImg() {
        const img = this.mediaDetails.image_path;
        const style = `background-image: url(${img}); `;
        return this.sanitizer.bypassSecurityTrustStyle(style);
 }

注意:我只想将不透明性放在const img而不是整个离子含量上。它不会使对象不透明

1 个答案:

答案 0 :(得分:0)

您可以使用例如样式添加opacity属性

const style = `background-image: url(${img}); opacity:0.3 `;