0
只在7.0或更高,圖片會顯示廣場,希望有人能告訴我如何處理它的問題。android 7.0,weex中的圖片會顯示廣場,連我設置的圖片顯示圓圈
<div class="avatar_border">
<image class="avatar" :src="avatarUrl" placeholder="default.png"></image>
</div>
//這是風格
.avatar_border {
width: 160px;
height: 160px;
margin-top: 10px;
margin-left: 10px;
background-color: #fff;
border-radius: 100px;
border-bottom-left-radius: 100px;
border-bottom-right-radius: 100px;
border-top-left-radius:100px;
border-top-right-radius: 100px;
}
在你的CSS類'border-radius:50%;'中設置這個屬性值。 – Shailesh