-
Notifications
You must be signed in to change notification settings - Fork 0
/
Water Effect On Name.html
69 lines (60 loc) Β· 1.5 KB
/
Water Effect On Name.html
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
<!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">
<style>
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100&display=swap');
*{
margin: 0%;
padding: 0%;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
body{
display: flex;
justify-content: space-between;
background: #000;
text-transform: uppercase;
letter-spacing: 0.7rem;
}
.content{
position: relative;
height: 100vh;
width: 100vw;
}
.content h1{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 7rem;
}
.content h1:nth-child(1){
color:transparent;
-webkit-text-stroke: 3px #ffffff;
}
.content h1:nth-child(2){
color: #ff6400;
animation: animate 3s ease-in-out infinite;
}
@keyframes animate
{
0%, 100%{
clip-path: polygon(0% 45%, 15% 44%, 32% 50%, 54% 60%, 70% 61%, 84% 59%, 100% 52%, 100% 100%, 0% 100%);
}
50%{
clip-path: polygon(0% 60%, 16% 65%, 34% 66%, 51% 62%, 67% 50%, 84% 45%, 100% 46%, 100% 100%, 0% 100%);
}
}
</style>
<title>Water Effect On Name</title>
</head>
<body>
<div class="content">
<h1>TechCode</h1>
<h1>TechCode</h1>
</div>
</body>
</html>