|
|

楼主 |
发表于 2022-5-23 12:56
|
显示全部楼层
- <style>
- .wrap {
- position: relative;
- width: 800px;
- height: 600px;
- background: linear-gradient(45deg, #f44336, #ff9800, #ffeb3b, #8bc34a, #00bcd4, #673ab7);
- }
-
- .inner {
- height: 100%;
- background: #000;
- filter: contrast(700%);
- mix-blend-mode: multiply;
- position: relative;
- }
- .inner::before {
- content: '';
- position: absolute;
- top: 0; right: 0; bottom: 0; left: 0;
- background: radial-gradient(#fff, transparent);
- background-size: 20px 20px;
- }
- </style>
- <div class="wrap">
- <div class="inner"></div>
- </div>
复制代码
|
|