You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
749 B
HTML
33 lines
749 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Document</title>
|
|
<link rel="stylesheet" href="index.css">
|
|
<script type="module" src="index.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="blend">
|
|
<div>
|
|
<div></div>
|
|
</div>
|
|
<svg style="display: none;">
|
|
<defs>
|
|
<filter id="blend">
|
|
<feGaussianBlur in="SourceGraphic" stdDeviation="10" result="blur"></feGaussianBlur>
|
|
<fecolorMatrix in="blur" mode="matrix" values="
|
|
1 0 0 0 0
|
|
0 1 0 0 0
|
|
0 0 1 0 0
|
|
0 0 0 20 -10">
|
|
</fecolorMatrix>
|
|
</filter>
|
|
</defs>
|
|
</svg>
|
|
</div>
|
|
</body>
|
|
|
|
</html> |