我曾经background-blend-mode: lighten;
基本上减轻了黑色背景图像的强度(refath.github.io/Survey)。虽然它在桌面上完美运行,但我在手机上检查了该网站,由于某种原因,黑色背景简单地覆盖了background-blend-mode
,如果这有意义的话。我什至尝试使用!important
覆盖任何可能干扰设计的库,但无济于事。以下是相关代码:
CSS:
body{
padding: 20px;
margin: 0;
background-image: url("https://wallpaperplay.com/walls/full/2/b/1/99126.jpg");
background-color: rgba(255, 255, 255, 0.95);
background-blend-mode: lighten !important;
max-width: 100%;
overflow-x: hidden;
}
<body>
</body>
在桌面(Chrome)上:
在 iPhone X (Chrome) 上:
任何帮助将不胜感激。谢谢。