<cover-view class="callout-footprint-container">
<cover-image
class="callout-bubble"
style="background-color: red"
src="/static/images/home/callout/bubble.png"
mode="scaleToFill"
/>
</cover-view>
// 显示正常的样式,必须设置cover-image的宽高
.callout-footprint-container {
margin-bottom: 93rpx;
width: 356rpx;
height: 124rpx;
z-index: 9990;
position: relative;
.callout-bubble {
position: absolute;
top: 10rpx;
left: 0;
width: 356rpx;
height: 114rpx;
}
}
// 显示错误的样式
.callout-footprint-container {
margin-bottom: 93rpx;
width: 356rpx;
height: 124rpx;
z-index: 9990;
position: relative;
.callout-bubble {
position: absolute;
top: 10rpx;
right: 0;
bottom: 0;
left: 0;
}
}