这是百度浏览器的广告屏蔽机制,会让这种固定定位在底部的元素当作广告来屏蔽掉(隐藏移除不显示)
伪元素解决
<footer class="home_foot">
<img>
<span></span>
<span class="download" @click="getHome()"></span>
</footer>
.home_foot{
position: fixed;
top: 0;
z-index: 10;
display: flex;
justify-content:flex-start;
align-items: center;
padding: .2rem .4rem;
box-sizing: border-box;
.download{
position: relative;
&::after{
content: "下载";
position: absolute;
background: #fa7403;
color: #ffedc9;
}
}
}