給一個(gè)層設(shè)置半透明的背景
background:linear-gradient(to bottom, transparent, #ffffff)
在安卓上顯示正常(白色半透明)
但ios上顯示透明漸變會(huì)出現(xiàn)灰色舟陆,
所以不能直接寫成transparent, 改成如下
background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%) 或 background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1))
出現(xiàn)這個(gè)問題的原因參考網(wǎng)址:https://blog.csdn.net/simgenius/article/details/82688864