首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >背景-混合模式不适用于移动

背景-混合模式不适用于移动
EN

Stack Overflow用户
提问于 2019-10-08 04:00:02
回答 2查看 603关注 0票数 0

我使用background-blend-mode: lighten;从本质上减轻了黑色背景图像(Refath.github.io/调查)的强度。虽然它在桌面上运行得很好,但我在手机上查看了这个站点,出于某种原因,如果有道理的话,黑色的背景就会覆盖background-blend-mode。我甚至尝试使用!important覆盖任何可能干扰设计的库,但都没有效果。以下是相关代码:

CSS:

代码语言:javascript
复制
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;
}
代码语言:javascript
复制
<body>

</body>

桌面(Chrome):

iPhone X(Chrome)上:

任何帮助都将不胜感激。谢谢。

EN

回答 2

Stack Overflow用户

发布于 2019-10-08 05:11:51

我不认为Chrome上的iOS,但浏览器对css规则的支持仍然不稳定。这可能是因为还没有人支持它。由于Edge不支持它,所以通常最好有一个备份计划,以备失败时使用。您在iOS上尝试过其他浏览器吗?

票数 0
EN

Stack Overflow用户

发布于 2019-10-08 06:30:58

为什么不在body上使用颜色叠加

代码语言:javascript
复制
body{
    padding: 20px;
    margin: 0;
    background-image: url("https://wallpaperplay.com/walls/full/2/b/1/99126.jpg");
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}


body:before{
    content: '';
    width: 100%; /* Full width (cover the whole page) */
    height: 100%; /* Full height (cover the whole page) */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.95); /* Your desire color */
    z-index: 2;
}

代码语言:javascript
复制
<div id="overlay"></div>//place inside body tag

#overlay {
  position: fixed; /* Sit on top of the page content */
  display: none; /* Hidden by default */
  width: 100%; /* Full width (cover the whole page) */
  height: 100%; /* Full height (cover the whole page) */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.5); /* Your desire color */
  z-index: 2; /* Specify a stack order in case you're using a different order for other elements */
}
票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/58280031

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档