gpt4 book ai didi

css - Angular 动态背景图片

转载 作者:技术小花猫 更新时间:2023-10-29 10:15:42 26 4
gpt4 key购买 nike

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

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

适用于网络浏览器和安卓浏览器。但是,使用“style=”的动态背景图像不会在 iPad 上显示。

我总是可以使用 img 标签创建动态图像,但我正在寻找适用于 iPad 的样式/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

关于css - Angular 动态背景图片,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37575368/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com