作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
让我们想象一下,有一个具有交替 block 的站点,一些 block 是蓝色的,另一些是红色的,还有一个 position:fixed 的 block 是蓝色的。在蓝色背景上滚动页面时,应该是红色的,在红色背景上应该是蓝色的
这是代码示例:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css.css">
<title>Document</title>
</head>
<body>
<div class="fixed"></div>
<div class="block red"></div>
<div class="block blue"></div>
<div class="block red"></div>
<div class="block blue"></div>
</body>
</html>
.block {
width: 100%;
height: 200px;
}
.red {
background: red;
}
.blue {
background: blue;
}
.fixed {
position: fixed;
background: blue;
top: 100px;
left: 100px;
z-index: 10;
width: 80px;
height: 80px;
}
最佳答案
您可以使用 mix-blend-mode: difference
并将背景色设置为全红和全蓝值:
差异通过取红色、绿色和蓝色值差异的绝对值来工作:
rgb(1, 0, 0) red +
rgb(1, 0, 1) pink (full r and b)
=
rgb(0, 0, 1) blue
.block {
width: 100%;
height: 200px;
}
.red {
background: red;
}
.blue {
background: blue;
}
.fixed {
position: fixed;
background: #ff00ff;
mix-blend-mode: difference;
top: 100px;
left: 100px;
z-index: 10;
width: 80px;
height: 80px;
}
<div class="fixed"></div>
<div class="block red"></div>
<div class="block blue"></div>
<div class="block red"></div>
<div class="block blue"></div>
关于javascript - 如何制作位置为 :fixed to change the color when passing a certain border? 的区 block ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68339758/
我是一名优秀的程序员,十分优秀!