atharv-mandlavdiya 1.0.2 → 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/atharvmandlavdiya.js +37 -0
- package/package.json +1 -1
package/atharvmandlavdiya.js
CHANGED
|
@@ -9,3 +9,40 @@ const atharv_mandlavdiya = `
|
|
|
9
9
|
export function atharvm() {
|
|
10
10
|
console.log(atharv_mandlavdiya);
|
|
11
11
|
}
|
|
12
|
+
|
|
13
|
+
const sign = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 650 200" width="650" height="200">
|
|
14
|
+
<defs>
|
|
15
|
+
<linearGradient id="pathGradient" x1="0%" y1="0%" x2="100%" y2="0%">
|
|
16
|
+
<stop offset="0%" stop-color="#404040" stop-opacity="1" />
|
|
17
|
+
<stop offset="100%" stop-color="#4ecdc4" stop-opacity="1" />
|
|
18
|
+
</linearGradient>
|
|
19
|
+
<filter id="noise" x="0" y="0" width="100%" height="100%">
|
|
20
|
+
<feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="2" stitchTiles="stitch" result="n" />
|
|
21
|
+
<feColorMatrix in="n" type="saturate" values="0" />
|
|
22
|
+
</filter>
|
|
23
|
+
</defs>
|
|
24
|
+
<rect width="650" height="200" fill="#000" />
|
|
25
|
+
<rect width="650" height="200" filter="url(#noise)" opacity="0.15" style="mix-blend-mode:overlay" />
|
|
26
|
+
<path
|
|
27
|
+
d="M 73 100 C 140.5 62, 230.5 78, 298 40 C 320.5 38, 350.5 102, 373 100 C 283 80, 163 120, 73 100 C 122.5 62, 188.5 78, 238 40 C 251.5 56, 269.5 144, 283 160 C 337 140, 409 180, 463 160 C 346 122, 190 138, 73 100 C 172 98, 304 162, 403 160 C 340 122, 256 138, 193 100 C 301 80, 445 120, 553 100 C 409 80, 217 120, 73 100 C 136 98, 220 162, 283 160 C 256 122, 220 138, 193 100 C 278.5 62, 392.5 78, 478 40 C 442 20, 394 60, 358 40 C 272.5 38, 158.5 102, 73 100"
|
|
28
|
+
fill="none"
|
|
29
|
+
stroke="url(#pathGradient)"
|
|
30
|
+
stroke-width="3"
|
|
31
|
+
stroke-linecap="round"
|
|
32
|
+
stroke-linejoin="round"
|
|
33
|
+
pathLength="1000"
|
|
34
|
+
stroke-dasharray="1000"
|
|
35
|
+
>
|
|
36
|
+
<animate
|
|
37
|
+
attributeName="stroke-dashoffset"
|
|
38
|
+
values="1000;0;0;-1000"
|
|
39
|
+
keyTimes="0;0.6;0.85;1"
|
|
40
|
+
dur="6s"
|
|
41
|
+
repeatCount="indefinite"
|
|
42
|
+
/>
|
|
43
|
+
</path>
|
|
44
|
+
</svg>`;
|
|
45
|
+
|
|
46
|
+
export function signature() {
|
|
47
|
+
return sign;
|
|
48
|
+
}
|