小编典典

角度动态背景图片

css

在html模板中,我具有带有动态图像的这种样式:

<div style="background: url('/img/{{item.img}}'); width: 200px; height: 150px"></div>

可以在网络浏览器和android浏览器中使用。但是,使用“ style =”动态显示的背景图像不会在iPad上显示。

我总是可以使用img标签创建动态图像,但是我正在寻找iPad的样式/ css解决方案。


阅读 457

收藏
2020-05-16

共1个答案

小编典典

改用

<div [ngStyle]="{background: 'url(/img/' + item.img + ')', width: '200px', height: '150px'"></div>

要么

<div [style.background]="'url(/img/' + item.img + ')'"
    [style.width.px]="200" [style.height.px]="150p"></div>
2020-05-16