我正在研究网站标题。这样,透明标题将设置在背景图像的页面顶部。当我们向下滚动时,标题将变为白色,而当我们向上滚动至顶部时,标题将再次变为透明。
除野生动物园ipad air外,其他任何地方都可以正常工作。当我回到顶部时,发生的事情是透明颜色变成黑色,有时变成灰色,而不是透明颜色。
如果给出了其他颜色而不是透明的颜色,则效果很好
.global__header {
background: rgba(255,255,255,0);
box-shadow: none;
transition: all 0.5s ease;
}
.global__header--white {
background: rgba(255,255,255,1);
}
答案 0 :(得分:0)
尝试:
.global__header {
background-color: transparent;
box-shadow: none;
transition: all 0.5s ease;
}