Нужно чтобы при прокрутке страницы на синем фоне он был белым, а на красным был синим
Вот пример кода
<!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;
}