記錄一下卡了一上午的問題
background屬性動態(tài)綁定了背景圖片后設(shè)置background-size在瀏覽器里一刷新就不生效
找了好多辦法都沒有效果 最后的解決辦法 在百分比前加了個 /
<view class="imgStyle" :style="{ background: `url(${detail.img}) no-repeat 100% /100%`,backgroundSize:'cover'}"></view>
記錄一下卡了一上午的問題
background屬性動態(tài)綁定了背景圖片后設(shè)置background-size在瀏覽器里一刷新就不生效
找了好多辦法都沒有效果 最后的解決辦法 在百分比前加了個 /
<view class="imgStyle" :style="{ background: `url(${detail.img}) no-repeat 100% /100%`,backgroundSize:'cover'}"></view>