-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path2.html
More file actions
80 lines (54 loc) · 1.53 KB
/
2.html
File metadata and controls
80 lines (54 loc) · 1.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<meta charset="utf-8">
<html>
<head>
<title>small-website1</title>
<style type="text/css">
.full{
font-size: 1rem;
}
#dummyContainer, #activeContainer{
height: 0;
overflow: hidden;
}
.effect{
filter: url("#filter");
}
</style>
</head>
<body>
<main>
<div class="effect" >
<h1>jenga-tournament<h1>
<h2 class="bouncey">1000$ Bountey<h2>
</div>
<div class="full">
<img class="effect" src="https://images.pexels.com/photos/20787/pexels-photo.jpg?cs=tinysrgb&dpr=1&w=500">
</div>
<div class="full">
<img class="effect" src="1556684056434.gif">
</div>
</main>
<div height="0px" id="activeContainer"></div>
<div height="0px" id="dummyContainer">
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" id="dummyWaves">
<defs>
<filter id="filter" color-interpolation-filters="sRGB" filterUnits="objectBoundingBox">
<feGaussianBlur stdDeviation="10 0" in="SourceGraphic" edgeMode="wrap" result="rt1"/>
<feColorMatrix type="matrix" values="
1 0 0 0 0
0 0 0 0 0
0 0 0 0 0
0 0 0 1 0" in="rt1" result="red"/>
<feColorMatrix type="matrix" values="
0 0 0 0 0
0 1 0 0 0
0 0 1 0 0
0 0 0 1 0" in="SourceGraphic" result="blue"/>
<feBlend mode="screen" in="red" in2="blue" result="3d"/>
</filter>
</defs>
</svg>
</div>
</body>
</html>