我的目标是使用“styles”属性从组件变量设置样式(在本例中为高度和宽度)。我认为有一种简单的数据绑定方法,但这可能是一厢情愿的想法......
例如,如果我使用html胡子绑定,它可能看起来像这样:
@Component({
selector: '[sidebar]',
templateUrl: 'app/Nav/sidebar.comp.html',
styles: [`
.sidebar-nav {
overflow: scroll;
height: {{ height }};
}
.sidebar {
height: {{ 0.9 * height }};
width: {{ 0.21 * width }};
}
`]
})
export class SidebarComp {
width: number;
height: number;
constructor() {
this.height = window.innerHeight;
this.width = window.innerWidth;
}
}
显然这是错的,但我尝试了一些更可能的排列,并且没有在Angular网站,Stack Overflow或Google上找到解决方案。我可能会被简化为使用ngStyle内联,但在这种情况下这并不理想。
答案 0 :(得分:21)
您可以设置主机元素的样式,如
@Component({
selector: '[sidebar]',
templateUrl: 'app/Nav/sidebar.comp.html',
host: {
'[style.height.px]':'0.9 * height',
'[style.width.px]':'0.21 * width'
}
})
export class SidebarComp {
width: number;
height: number;
constructor() {
this.height = window.innerHeight;
this.width = window.innerWidth;
}
}
和内容(app/Nav/sidebar.comp.html
)类似
<div class="sidebar-nav" [style.overflow]="'scroll'" [style.height.px]="height">
或
<div class="sidebar-nav" [ngStyle]="{overflow: 'scroll', height: height + 'px'}">
答案 1 :(得分:2)
就我而言,我需要在px和%单位之间更改图片样式动态切换。
所以我用[ngStyle]
代替了[style.height.px]
我分享关注的人。
HTML
<img [src]="imageUrl | safe: 'url'" [ngStyle]="{width: imagewidth, height: imageheight}">
TS
if (this.properties.imageStyle == 'Stretch') {
this.imagewidth = this.cols * this.unitWidth + 'px';
this.imageheight = this.rows * this.unitHeight + 'px';
}
if (this.properties.imageStyle == 'Clip') {
this.imagewidth = 100 + '%';
this.imageheight = 100 + '%';
}
答案 2 :(得分:1)
如果您使用百分比(%),请尝试以下操作:
<div class="sidebar-nav" [style.height.%]="height">