<!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">
<title>Document</title>
<style>
.mix {
width: 500px;
height: 300px;
background: url(./1.png) #0ff;
background-size: 100% 100%;
background-blend-mode: lighten;
position: relative;
}
.mix::after{
content: '';
position: absolute;
width: 100%;
height: 100%;
background: url(./1.png) #f00;
background-size: 100% 100%;
background-blend-mode: lighten;
mix-blend-mode: darken;
margin-left: 10px;
animation: shake 200ms infinite;
}
@keyframes shake {
50% {
transform: translate(1%);
}
}
</style>
</head>
<body>
<div class="mix">
</div>
</body>
</html>
前端设置故障风格图片
于 2023-04-26 16:18:37 首次发布