<image src=""></image>
这样的效果 加载本地图片 …/…/image/xxx.png
页面中某些项出现失败现象 其中一部分跟换http://的外链图片显示成功 但是部分 无论本地和远程都失败 image未知存在 点击事件正常触发 就是图片不显示
html
<view class=“btn-area”>
<view class=“imgleft”>
<image class=“tab-avatar” src="" bindtap=“towillget”/>
</view>
<view class=“imgright”>
<image class=“tab-avatar2” src="" bindtap=“tonoget” />
</view>
</view>
css
.btn-area{
bottom: 0;
position:fixed;
border-top: 1rpx #c5c5c5 solid;
z-index:999;
width:100%;
margin: 0 auto;
padding: 10rpx 0;
background-color: #fff;
}
.imgleft{
margin-left:21%;
float: left;
width:107rpx;
}
.imgright{
margin-right:21%;
float: right;
width:134rpx;
}
.tab-avatar {
height:113rpx;
width:107rpx;
z-index:999;
border-radius: 10%;
}
.tab-avatar2 {
height:113rpx;
width:134rpx;
border-radius:10%;
}