-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
201 lines (164 loc) · 5.17 KB
/
index.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>@codewith_muhilan</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<style>
body,
html,
#app {
margin: 0;
width: 100%;
height: 100%;
}
#app {
overflow: hidden;
color: #ffffff;
font-family: 'Montserrat',
sans-serif;
text-align: center;
text-shadow: 0 0 5px #ffffff, 0 0 20px #000,
0 0 30px #000;
}
#app h1 {
--fontSize: 60px;
--lineHeight: 80px;
width: auto;
height: calc(2 * var(--lineHeight));
line-height: var(--lineHeight);
margin: calc(50vh - var(--lineHeight)) auto 0;
font-size: var(--fontSize);
}
#app a {
margin-top: 10px;
display: inline-block;
text-decoration: none;
color: #fff;
}
#app canvas {
display: block;
position: fixed;
z-index: -1;
top: 0;
}
/* -- External Social Link CSS Styles -- */
#source-link {
top: 120px;
}
#source-link>i {
color: rgb(94, 106, 210);
}
#yt-link {
top: 65px;
}
#yt-link>i {
color: rgb(219, 31, 106);
}
#Fund-link {
top: 10px;
}
#Fund-link>i {
color: rgb(255, 251, 0);
}
.meta-link {
align-items: center;
backdrop-filter: blur(3px);
background-color: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 6px;
box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
cursor: pointer;
display: inline-flex;
gap: 5px;
left: 10px;
padding: 10px 20px;
position: fixed;
text-decoration: none;
transition: background-color 600ms, border-color 600ms;
z-index: 10000;
}
.meta-link:hover {
background-color: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 0.2);
}
.meta-link>i,
.meta-link>span {
height: 20px;
line-height: 20px;
}
.meta-link>span {
color: white;
font-family: "Rubik", sans-serif;
transition: color 600ms;
}
</style>
</head>
<body>
<div id="app">
<div id="hero">
<h1>@codewith_muhilan</h1>
<!--Social Liks codings below-->
<a id="source-link" class="meta-link" href="https://t.me/codewith_muhilan" target="_blank">
<i class="fas fa-link"></i>
<span class="roboto-mono">Join my Telegram</span>
</a>
<a id="yt-link" class="meta-link" href="https://www.youtube.com/@codewith_muhilan?sub_confirmation=1"
target="_blank">
<i class="fab fa-youtube"></i>
<span> Subscribe my channel</span>
</a>
<a id="Fund-link" class="meta-link" href="https://www.buymeacoffee.com/codewithmuhilan" target="_blank">
<i class="fas fa-dollar-sign"></i>
<span> Show your Support..❤</span>
</a>
</div>
</div>
<script type="module">
import { particlesCursor } from 'https://unpkg.com/threejs-toys@0.0.8/build/threejs-toys.module.cdn.min.js'
const pc = particlesCursor({
el: document.getElementById('app'),
gpgpuSize: 512,
colors: [0x00fffc, 0x00fffc], // Changed pink color to #00fffc and blue color
color: 0x1d9ae8,
coordScale: 0.5,
noiseIntensity: 0.005,
noiseTimeCoef: 0.0001,
pointSize: 2, // Lighter particle thickness
pointDecay: 0.0025,
sleepRadiusX: 250,
sleepRadiusY: 250,
sleepTimeCoefX: 0.001,
sleepTimeCoefY: 0.002
});
// Update particle position based on cursor movement
document.addEventListener('mousemove', (event) => {
const mouseX = event.clientX / window.innerWidth;
const mouseY = 1 - event.clientY / window.innerHeight;
pc.uniforms.uMousePos.value.set(mouseX, mouseY);
});
document.body.addEventListener('click', () => {
pc.uniforms.uColor.value.set(Math.random() * 0xffffff);
pc.uniforms.uCoordScale.value = 0.001 + Math.random() * 2;
pc.uniforms.uNoiseIntensity.value = 0.0001 + Math.random() * 0.001;
pc.uniforms.uPointSize.value = 1 + Math.random() * 10;
});
document.body.addEventListener('click', () => {
pc.uniforms.uColor.value.set(Math.random() * 0xffffff);
pc.uniforms.uCoordScale.value = 0.001 + Math.random() * 2;
pc.uniforms.uNoiseIntensity.value = 0.0001 + Math.random() * 0.001;
pc.uniforms.uPointSize.value = 1 + Math.random() * 10;
// Reset particle parameters after 2 seconds
setTimeout(() => {
pc.uniforms.uColor.value.set(0x000000); // Set color to black (invisible)
pc.uniforms.uCoordScale.value = 0.001;
pc.uniforms.uNoiseIntensity.value = 0.0001;
pc.uniforms.uPointSize.value = 0;
}, 2000);
});
</script>
</body>
</html>
=