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

css – Angular2动态背景图像

在html模板中,我有这种风格的动态图像:
<div style="background: url('/img/{{item.img}}'); width: 200px; height: 150px"></div>

哪个适用于Web浏览器和Android浏览器.但是,使用“style =”动态的背景图像不会在iPad上显示.

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

解决方法

请改用
<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>

另见In RC.1 some styles can’t be added using binding syntax

原文地址:https://www.jb51.cc/css/215785.html

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