在html模板中,我有这种风格的动态图像:
<div style="background: url('/img/{{item.img}}'); width: 200px; height: 150px"></div>
哪个适用于Web浏览器和Android浏览器.但是,使用“style =”动态的背景图像不会在iPad上显示.
解决方法
请改用
<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>