IDE上是正常的,但在ios真机上就变成透明的了。
代码用的是以下文档的示例代码:
https://developers.weixin.qq.com/miniprogram/dev/framework/ability/custom-tabbar.html
样式只改了background:
.tab-bar {
position: fixed;
bottom: 0;
left: 0;
right: 0;
height: 48px;
background: -webkit-linear-gradient(top,rgba(66,94,128,.8),rgba(31,48,73,.8));
display: flex;
padding-bottom: env(safe-area-inset-bottom);
}
基础库是2.16.0,手机是iPhone 6s,手机微信版本是8.0.2
cover-view 不支持渐变,可以将自定义 tabbar的 cover-view 改成 view 就可以了。