-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1035 lines (955 loc) · 42.9 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
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- CSP -->
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self' 'unsafe-inline' https://instant.page https://chromedino.com https://*.hearthis.at https://cdn.jsdelivr.net; style-src 'self' 'unsafe-inline' https://*.hearthis.at; connect-src 'self' https://chromedino.com https://*.hearthis.at https://cdn.jsdelivr.net https://tecnik.bio.link; img-src 'self' https://www.svgrepo.com https://play.vsthemes.org https://tecnik.pages.dev; media-src 'self' https://tecnik.pages.dev; data: blob:; frame-src 'self' https://chromedino.com https://*.hearthis.at;">
<meta http-equiv="Cross-Origin-Opener-Policy" content="same-origin">
<meta http-equiv="X-Content-Type-Options" content="nosniff">
<meta http-equiv="X-XSS-Protection" content="1; mode=block">
<meta name="referrer" content="no-referrer-when-downgrade">
<meta name="description" content="Official Site for @TecNikOfficial and @SyncKingMusic: Where tech meets music! Discover safe tech tips for Windows and gaming, paired with meaningful songs that blend human creativity + Ai innovation❤️">
<meta name="robots" content="index, follow">
<meta name="msvalidate.01" content="64DD8D6892380686ECBC2B2AB639F756"/>
<meta name="google-site-verification" content="ebIZ0CJJW0rZZjBOIn0btfrn2vYjA9IDo3GLpBlNYQQ"/>
<meta name="author" content="TecNik">
<meta name="generator" content="TecNik">
<!-- Open Graph Meta Tags -->
<meta property="og:type" content="website">
<meta property="og:title" content="TecNik - Official Site">
<meta property="og:description" content="@TecNikOfficial & @SyncKingMusic : Where tech meets music! Explore safe Windows / gaming tips alongside Songs that blend human creativity + Ai❤️">
<meta property="og:url" content="https://tecnik.pages.dev">
<meta property="og:image" content="https://tecnik.pages.dev/assets/media/metaimg.avif">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="628">
<!-- Twitter Card Meta Tags -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="TecNik - Official Site">
<meta name="twitter:description" content="@TecNikOfficial & @SyncKingMusic : Where tech meets music! Explore safe Windows / gaming tips alongside Songs that blend human creativity + Ai❤️">
<meta name="twitter:image" content="https://tecnik.pages.dev/assets/media/metaimg.webp">
<!-- Canonical Link -->
<link rel="canonical" href="https://tecnik.pages.dev">
<!-- Favicon -->
<link rel="icon" href="https://tecnik.pages.dev/assets/media/favicon.webp" type="image/webp">
<!-- Page Title -->
<title>Tecnik - Official Site</title>
<!-- CSS -->
<style>* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body, html {
height: auto;
font-family: Arial, sans-serif;
overflow: hidden; /* Show scrollbars only when necessary */
cursor: url('https://play.vsthemes.org/t-cursors/12251/25a255ea88403b8c79e2bb1b03efd2a5.webp'), auto;
}
/* Custom cursor for buttons and specific classes */
button, .hover-image, .notification-bell, .widget-image, a {
cursor: url('https://play.vsthemes.org/t-cursors/12251/b455a062e7b24797cc26a84981f31797.webp'), pointer !important;
}
/* Change link color to green and remove underline */
a {
color: green; /* Set link color to green */
text-decoration: none; /* Remove underline */
}
/* Optional: Change link color on hover and remove underline */
a:hover {
color: lightgreen; /* Change to a darker green on hover for better visibility */
text-decoration: none; /* Ensure underline is still removed on hover */
}
.drawing {
position: absolute;
border-radius: 50%;
pointer-events: none; /* Prevent interference with mouse events */
width: 10px; /* Size of the drawing dot */
height: 10px; /* Size of the drawing dot */
background-color: rgba(0, 255, 0, 0.7); /* Neon green color */
box-shadow: 0 0 10px rgba(0, 255, 0, 1), 0 0 20px rgba(0, 255, 0, 0.5); /* Neon glow */
transition: opacity 0.5s ease; /* Smooth transition for disappearing */
}
.video-background {
position: relative;
height: 100vh;
overflow: hidden;
background-color: black;
}
.video-background::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.3); /* Dark overlay with reduced opacity (30%) */
z-index: 1; /* Place the overlay behind the text */
}
video {
width: 100%;
height: 100%;
object-fit: cover;
z-index: 0; /* Place the video behind the overlay */
}
#loading-screen {
position: fixed; /* Fixed position to cover the entire viewport */
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
backdrop-filter: blur(10px); /* Initial blur effect */
display: flex; /* Center content */
justify-content: center; /* Center horizontally */
align-items: center; /* Center vertically */
z-index: 100; /* Ensure it's above other elements */
opacity: 1; /* Initial opacity */
transition: opacity 5s ease; /* Transition for fading out */
}
.loading-content {
color: white; /* Text color */
font-size: 3rem; /* Font size for the year */
}
.unblur {
backdrop-filter: blur(0); /* Remove blur */
transition: backdrop-filter 5s ease; /* Transition for unblur effect */
}
.slider {
position: absolute;
top: 35%; /* Adjust this value to move the content upwards */
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
z-index: 2; /* Place the text on top of the overlay */
height: 400px; /* Set a fixed height */
pointer-events: auto; /* Allow pointer events for slider */
}
.text.three-d {
font-size: 4rem; /* Default font size */
color: white; /* Default color */
text-shadow:
1px 1px 0 rgba(0, 0, 0, 0.5),
2px 2px 0 rgba(0, 0, 0, 0.5),
3px 3px 0 rgba(0, 0, 0, 0.5),
4px 4px 0 rgba(0, 0, 0, 0.5),
5px 5px 0 rgba(0, 0, 0, 0.5); /* Creates the 3D effect */
-webkit-text-stroke: 1px black; /* Optional: adds an outline */
animation: float 3s ease-in-out infinite; /* Floating animation */
transition: color 0.3s ease; /* Transition for color change */
position: relative; /* Allow the text to be positioned without affecting siblings */
z-index: 1; /* Ensure it is above the background */
}
.hover-image {
width: 80%; /* Adjusted to be responsive */
max-Height: 60px; /* Maximum width to maintain size on larger screens */
max-width: 300px; /* Maximum width to maintain size on larger screens */
margin-bottom: 20px; /* Space between image and text */
transition: transform 0.3s ease, filter 0.3s ease; /* Smooth transitions */
cursor: pointer; /* Change cursor to pointer */
filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0)); /* Initial state without shadow */
pointer-events: auto; /* Ensure the image is clickable */
}
.hover-image:hover {
transform: scale(1.1); /* Zoom in effect on hover */
filter: drop-shadow(0 0 15px rgba(0, 255, 0, 0.7)) /* Green glow effect */
drop-shadow(0 0 25px rgba(0, 255, 0, 0.5))
drop-shadow(0 0 35px rgba(0, 255, 0, 0.3));
}
.three-d {
font-size: 4rem; /* Default font size */
color: white; /* Default color */
text-shadow:
1px 1px 0 rgba(0, 0, 0, 0.5),
2px 2px 0 rgba(0, 0, 0, 0.5),
3px 3px 0 rgba(0, 0, 0, 0.5),
4px 4px 0 rgba(0, 0, 0, 0.5),
5px 5px 0 rgba(0, 0, 0, 0.5); /* Creates the 3D effect */
-webkit-text-stroke: 1px black; /* Optional: adds an outline */
animation: float 3s ease-in-out infinite; /* Floating animation */
transition: color 0.3s ease; /* Transition for color change */
position: relative; /* Allow the text to be positioned without affecting siblings */
z-index: 1; /* Ensure it is above the background */
}
.three-d:hover {
color: green; /* Change text color to green on hover */
}
.green-text {
color: green;
}
.glow-button {
padding: 10px 20px;
font-size: 1.5rem;
color: white;
background-color: rgba(0, 0, 0, 0.5); /* Darker transparent background */
border: 2px solid grey;
border-radius: 25px; /* Rounded corners */
cursor: pointer;
position: relative;
overflow: hidden;
transition: all 0.3s ease;
white-space: nowrap; /* Prevent text from wrapping */
display: inline-block; /* Ensure the button behaves like a block element */
min-width: 100px; /* Set a minimum width for the button */
width: fit-content; /* Adjust the width to fit the content */
max-width: 250px; /* Set a maximum width for the button */
}
.button-container {
display: flex;
justify-content: center;
gap: 20px; /* Space between buttons */
margin: 5px 0; /* gap up and down */
position: relative; /* Ensure it is positioned correctly */
pointer-events: auto; /* Allow pointer events for buttons */
flex-wrap: wrap; /* Wrap buttons to the next line if necessary */
}
.glow-button:hover {
box-shadow: 0 0 20px rgba(0, 255, 0, 0.5), /* Green glow */
0 0 30px rgba(0, 255, 0, 0.5),
0 0 40px rgba(0, 255 , 0, 0.5),
0 0 50px rgba(0, 255, 0, 0.5);
transform: scale(1.05); /* Add zoom effect on hover */
}
.iframe-container {
position: relative; /* Position relative to allow absolute positioning of the iframe */
width: 100%; /* Full width of the container */
height: 55%; /* Full height of the container */
padding-top: 56.25%; /* 16:9 Aspect Ratio (height/width * 100%) */
margin-top: 20px; /* Space between the buttons and the iframe */
}
iframe {
position: absolute; /* Position absolute to fill the container */
top: 0;
left: 0;
width: 100%; /* Full width of the iframe */
height: 100%; /* Full height of the iframe */
border: none; /* Remove border */
pointer-events: auto; /* Allow pointer events for iframe */
}
.widget-container {
position: absolute;
bottom: 20px;
right: 20px; /* Position the widget to the right */
z-index: 10; /* Ensure it is above other elements */
display: flex; /* Use flexbox for positioning */
align-items: center; /* Center items vertically */
pointer-events: auto; /* Allow pointer events for the container */
}
.widget-image {
width: 100px; /* Set a fixed size for the widget image */
transition: transform 0.3s ease, filter 0.3s ease; /* Smooth transition for hover effect */
position: relative; /* Ensure the widget image is positioned relative to its container */
z-index: 11; /* Ensure it is above other elements */
cursor: pointer; /* Change cursor to pointer to indicate it's clickable */
}
.widget-image:hover {
transform: scale(1.1); /* Zoom effect on hover */
filter: drop-shadow(0 0 8px rgba(0, 255, 0, 0.5)) /* Reduced green glow effect */
drop-shadow(0 0 15px rgba(0, 255, 0, 0.3))
drop-shadow(0 0 25px rgba(0, 255, 0, 0.2));
}
@keyframes float {
0% { transform: translateY(0); }
50% { transform: translateY(-10px); }
100% { transform: translateY(0); }
}
.heart {
position: absolute; /* Ensure it does not affect layout */
animation: fall 2s forwards; /* Animation for falling effect */
font-size: 30px; /* Default size */
}
/* Media query for mobile devices */
@media only screen and (max-width: 768px) {
.heart {
font-size: 20px; /* Smaller size for mobile */
}
}
@keyframes fall {
0% { transform: translateY(0); opacity: 1; }
100% { transform: translateY(100vh); opacity: 0; } /* Fall to the bottom of the viewport */
}
/* Notification Bell Styles */
.notification-bell {
position: absolute;
top: 20px; /* Position at the top */
right: 20px; /* Position to the right */
cursor: pointer; /* Change cursor to pointer */
width: 60px; /* Set width of the bell icon */
height: 60px; /* Set height of the bell icon */
z-index: 3; /* Ensure it is above other elements */
}
#notification-panel {
position: absolute; /* Keep it absolute */
top: 60px; /* Adjust this value to position it just below the bell icon */
right: 0; /* Align it with the right edge of the bell icon */
width: 300px; /* Set a fixed width */
border-radius: 10px; /* Rounded corners */
overflow: hidden; /* Prevent overflow of content */
display: none; /* Initially hidden */
z-index: 6; /* Ensure it is above other elements */
background-color: rgba(0, 0, 0, 0.8); /* Darker transparent background */
}
#notification-panel::before {
content: ""; /* Create a pseudo-element */
position: absolute; /* Position it absolutely */
top: 0; /* Align it to the top */
left: 0; /* Align it to the left */
right: 0; /* Align it to the right */
bottom: 0; /* Align it to the bottom */
z-index: 1; /* Place it behind the content */
}
#notification-panel .overlay-content {
position: relative; /* Position relative to the panel */
color: white; /* Text color */
padding: 20px; /* Padding inside the panel */
border-radius: 10px; /* Rounded corners */
background-color: transparent; /* Make the background transparent */
z-index: 2; /* Place it above the dark background */
}
.footer {
position: fixed; /* Change to fixed to stick to the bottom */
bottom: 0; /* Stick to the bottom of the viewport */
left: 50%; /* Center horizontally */
transform: translateX(-50%); /* Adjust for centering */
color: white; /* Text color */
font-size: 1rem; /* Reduced font size */
text-align: center; /* Center text */
z-index: 4; /* Ensure it is above other elements */
background-color: rgba(0, 0, 0, 0.6); /* Optional: dark background for readability */
padding: 5px; /* Reduced padding for smaller appearance */
border-radius: 5px; /* Rounded corners */
max-width: 320px;
}
.overlay {
position: fixed; /* Fixed position to cover the entire viewport */
top: 0;
left: 0;
width: 100%;
height: 100%; /* Ensure it covers the full height */
background-color: rgba(0, 0, 0, 0.5); /* Lighter transparent background */
display: none; /* Initially hidden */
justify-content: center; /* Center content horizontally */
align-items: center; /* Center content vertically */
z-index: 5; /* Ensure it is above other elements */
overflow: hidden; /* Prevent overflow of heart animations */
}
.overlay-content {
background-color: rgba(0, 0, 0, 0.7); /* Darker transparent background for content */
border-radius: 15px; /* Rounded corners */
padding: 30px; /* Padding inside the overlay */
box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); /* Shadow for depth */
border: 2px solid green; /* Green outline */
max-width: 800px; /* Max width of the overlay */
width: 90%; /* Responsive width */
text-align: left; /* Align text to the left */
color: white; /* White text for overlay content */
position: relative; /* Position relative to allow absolute positioning of the close button */
}
.close-overlay {
position: absolute;
top: 5px; /* Position from the top */
right: 12px; /* Position from the right */
font-size: 24px; /* Size of the close button */
cursor: pointer; /* Change cursor to pointer */
color: white; /* Close button color */
background: none; /* No background */
border: none; /* No border */
z-index: 6; /* Ensure it is above other elements */
}
.close-overlay:hover {
color: green; /* Change text color to green on hover */
cursor: pointer; /* Change cursor to pointer on hover */
}
.table-scroll {
max-height: 300px; /* Set a maximum height for the table container */
overflow-y: auto; /* Enable vertical scrolling */
margin-top: 10px; /* Space between the title and the table */
}
table {
width: 100%; /* Full width of the table */
border-collapse: collapse; /* Collapse borders */
}
th, td {
padding: 10px; /* Padding for table cells */
border: 1px solid white; /* Border for table cells */
text-align: left; /* Align text to the left */
}
th {
background-color: rgba(0, 255, 0, 0.5); /* Light green background for headers */
}
.expertise-text {
display: flex; /* Use flexbox for centering */
justify-content: center; /* Center horizontally */
align-items: center; /* Center vertically */
text-align: center; /* Center text */
margin: 10px 0; /* Add some margin for spacing */
word-wrap: break-word; /* Allow long words to break to the next line */
overflow-wrap: break-word; /* Ensure text wraps correctly */
width: 100%; /* Ensure it takes full width */
}
/*Projects Overlay content*/
.scrolling-text {
overflow: hidden; /* Hide overflow */
white-space: nowrap; /* Prevent text wrapping */
box-sizing: border-box; /* Include padding in width */
width: 100%; /* Full width */
position: relative; /* Position relative for absolute child */
}
.scrolling-text span {
display: inline-block; /* Make the span inline-block */
margin-right: 60px; /* Add margin to create a gap between spans */
animation: scroll 31s linear infinite; /* Animation for scrolling (increased duration for slower effect) */
animation-delay: 3s; /* Delay before starting the scroll */
}
@keyframes scroll {
0% {
transform: translateX(0); /* Start from the initial position */
}
100% {
transform: translateX(-100%); /* Move to the left by the full width of the text */
}
}
/* Media query for mobile devices */
@media only screen and (max-width: 600px) {
/* Styles for mobile devices */
.overlay-content {
width: 90%; /* Adjust width for mobile devices */
padding: 20px; /* Adjust padding for mobile devices */
}
.table-scroll {
max-height: 200px; /* Adjust max height for mobile devices */
}
th, td {
padding: 5px; /* Adjust padding for mobile devices */
}
.slider {
top: 36%; /* Adjust the position for mobile devices; a lower value will move the element higher up.*/
width: 95%; /* Increase width for mobile */
}
.text.three-d {
font-size: 2.5rem; /* Adjust font size for mobile */
}
.three-d {
font-size: 2rem; /* Adjust font size for mobile */
}
.widget-container {
bottom: 90px; /* Higher values means more to up*/
right: 5px; /* Position the widget to the right , lower values means more to right*/
}
.widget-image {
width: 85px; /* Make the image a bit smaller */
}
.glow-button {
font-size: 1.5rem; /* Reduce font size on smaller screens */
padding: 8px 16px; /* Reduce padding on smaller screens */
max-width: 200px;
}
.button-container {
gap: 10px; /* Space between buttons */
}
.iframe-container {
height: 75%; /* Full height of the container */
}
.footer {
max-width: 330px;
}
}
/* Tablet devices (portrait and landscape) */
@media only screen and (min-width: 601px) and (max-width: 1024px) {
/* Styles for tablet devices */
.overlay-content {
width: 80%; /* Adjust width for tablet devices */
padding: 15px; /* Adjust padding for tablet devices */
}
.table-scroll {
max-height: 250px; /* Adjust max height for tablet devices */
}
th, td {
padding: 10px; /* Adjust padding for tablet devices */
}
.text.three-d {
font-size: 3rem; /* Adjust font size for mobile */
}
.three-d {
font-size: 2.5rem; /* Adjust font size for mobile */
}
.glow-button {
font-size: 1.5rem; /* Smallest font size */
padding: 8px 16px; /* Further adjust padding */
max-width: 200px; /* Further adjust max width for very small screens */
}
.widget-image {
width: 90px; /* Make the image a bit smaller */
}
.widget-container {
bottom: 20px; /* Higher values means more to up*/
right: 5px; /* Position the widget to the right , lower values means more to right*/
}
.iframe-container {
height: 85%; /* Full height of the container */
width: 100%;
}
}
@media only screen and (min-width: 320px) and (max-width: 599px) {
.glow-button {
font-size: 1.3rem; /* Smallest font size */
padding: 8px 16px; /* Further adjust padding */
max-width: 200px; /* Further adjust max width for very small screens */
}
.button-container {
gap: 10px; /* Space between buttons */
}
.footer {
max-width: 350px;
}
}
</style>
</head>
<body>
<div id="loading-screen">
<div class="loading-content">
<div id="year-timer">1999</div>
</div>
</div>
<div class="video-background">
<video autoplay muted loop>
<source src="https://tecnik.pages.dev/assets/media/video.webm" type="video/webm">
Your browser does not support the video tag.
</video>
<div class="slider">
<img src="https://tecnik.pages.dev/assets/media/tecnikmain4.avif" class="hover-image" title="Click To Copy!" alt="Main Image" width="auto"
height="auto" loading="lazy">
<div class="text three-d" id="slider-text" onclick="changeText()">WELCOME!</div>
<div class="button-container">
<button class="glow-button" onclick="window.location.href='https://tecnik.bio.link/'" title="📧Connect with Us">Contact</button>
<button class="glow-button" id="button2" title="💲Freelance">Services</button>
<button class="glow-button" id="button3" title="✔️Completed & Delivered">Projects</button>
</div>
<!-- Iframe-->
<div class="iframe-container">
<iframe scrolling="no" id="hearthis_at_user_syncking" width="100%" height="350" src="https://app.hearthis.at/syncking/embed/?hcolor=ba1010&css=&skin=black" title="SyncKing" frameborder="0" allowtransparency></iframe>
</div>
</div>
<div class="widget-container">
<img src="https://tecnik.pages.dev/assets/media/donate.webp" class="widget-image" title="TYSM❤️" alt="Donate" width="100%"
height="100%" loading="lazy">
</div>
<!-- Donation Overlay -->
<div id="donation-overlay" class="overlay">
<div class="overlay-content">
<span class="close-overlay" onclick="closeDonationOverlay()">✖</span>
<h2 style="color: green; text-align: center; text-decoration: underline; margin-bottom: 20px;">Choose Payment Method to Support</h2>
<div class="button-container">
<button class="glow-button" title="Thank" onclick="handleDonation('https://upi2qr.in/pay?name=Tecnik+Official&upiId=tecnikpay-1@okaxis&description=Thank+You')">Google PAY</button>
<button class="glow-button" title="you" onclick="handleDonation('https://upi2qr.in/pay?name=Tecnik+Official&upiId=tecnik@upi&description=Thank+You')">₹ UPI</button>
<button class="glow-button" title="for" onclick="handleDonation('https://www.paypal.me/TecnikOfficial')">💲PayPal</button>
</div>
<div class="button-container">
<button class="glow-button" title="your" onclick="handleDonation('https://buymeacoffee.com/tecnik')">Buy me a☕</button>
<button class="glow-button" title="support!" onclick="handleDonation('https://ko-fi.com/tecnik')">Ko-Fi</button>
</div>
</div>
</div>
<!-- Overlay for Table -->
<div id="table-overlay" class="overlay">
<div class="overlay-content">
<span class="close-overlay" onclick="closeOverlay()">✖</span>
<h2>Freelance Services</h2>
<div class="table-scroll">
<table>
<tr>
<th>Service</th>
<th>Description</th>
<th>Price Range in (INR)</th>
</tr>
<tr>
<td>Graphic Design</td>
<td>A.i Photo editing, Logo/Banner/Thumbnails/Product label/Social media promotional Post Designs</td>
<td>149 - 849</td>
</tr>
<tr>
<td>Video Editing</td>
<td>Youtube video editing and intro/outro design or cover song mix</td>
<td>449 - 2499</td>
</tr>
<tr>
<td>Web Development</td>
<td>Building Static Portfolio Sites with Html5,CSS,JS. Converting sites to Android App . Provides Hosting Advice and Site Optimisation</td>
<td>749 - 4999</td>
</tr>
<tr>
<td>Resume Making</td>
<td>ATS compatible or modern design resume</td>
<td>175 - 240</td>
</tr>
<tr>
<td>Computer Troubleshoot</td>
<td>Diagnose computer related problem and try to find solution, pc build advice</td>
<td>FREE</td>
</tr>
</table>
</div>
<br>
<h4>Contact using Discord or Email📧: <a href="mailto:[email protected]">[email protected]</a></h4>
<br>
<p style="font-size: 15px;">Please note that the preferred payment method is UPI. Full refunds are only available for payments made via UPI. Payments made through PayPal or Stripe are not eligible for refunds.</p>
<BR><p style="font-size: 16px; text-align: center;"><strong>GIVE US FEEDBACK <a href="https://tellonym.me/tecnik">HERE😃</a></strong></p>
</div>
</div>
<img src="https://tecnik.pages.dev/assets/media/noti.webp" class="notification-bell" alt="Notification Bell" width="60px"
height="60px" onclick="openNotificationPanel()" loading="lazy">
</div>
<!-- New Overlay for Projects -->
<div id="projects-overlay" class="overlay">
<div class="overlay-content">
<span class="close-overlay" onclick="closeProjectsOverlay()">✖</span>
<h2 style="color: green; text-decoration: underline;">Worked as Lead:</h2>
<br>
<div class="scrolling-text">
<span>
Automotive (Social Media Marketing) | Agro Pvt Ltd (Product Label & Logo Design) | Music Distributor (Website Design) | Resume Design (Multiple Clients)
</span>
<span>
Automotive (Social Media Marketing) | Agro Pvt Ltd (Product Label & Logo Design) | Music Distributor (Website Design) | Resume Design (Multiple Clients)
</span>
</div>
<br>
<h2 style="color: green; text-decoration: underline;">Collaborations:</h2>
<br>
<div class="scrolling-text">
<span>Cover Song Channel (Mix & Mastering), Portfolio Websites (Art Showcase) , Gaming Channel (Montage Edits)</span>
<span>Cover Song Channel (Mix & Mastering), Portfolio Websites (Art Showcase) , Gaming Channel (Montage Edits)</span>
<br><br>
</div>
<h2 style="color: green; text-decoration: underline;">Currently Working On:</h2>
<br>
<span>Building WEB App (working along with doctor)</span>
<br><br>
<div class="expertise-text">
<span style="font-weight: bold;">Expertise in Efficiency | Provides Value for Money Solutions</span>
</div>
</div>
</div>
<!-- Notification Panel Overlay -->
<div id="notification-panel">
<div class="overlay-content">
<p>• Are you subscribed to ▶️<a href="https://www.youtube.com/channel/UCXucwi4swKyTmCUB9RrFaQw?sub_confirmation=1" target="_blank">Tecnik Official</a>💻 ?</p><br>
<p>• Are you subscribed to ▶️<a href="https://www.youtube.com/channel/UC35TPNUnNegZq4mBWvU0o7g?sub_confirmation=1" target="_blank">Syncking</a>🎵 ?</p><br>
<p>• <a href="https://www.youtube-nocookie.com/embed/videoseries?list=PLzXDhbvRPJ1A33piKX-ss1zjNAVdqu4mM&loop=1&autoplay=1&modestbranding=1" target="_blank">CSGO Montage 😎</a></p><br>
<p>• <a href="./oldtheme/1.0.html">Old Site 🐈</a></p>
</div>
</div>
<!-- Footer Section -->
<footer class="footer">
Made with<a href="https://youtu.be/71qssscQqH8?feature=shared" target="_blank">
<img src="https://tecnik.pages.dev/assets/media/heart.gif" alt="Heart" title="Listen💓" width="20" height="20" style="vertical-align: bottom;">
</a>using A.i | Source Code
<a href="https://github.com/TecnikOfficial/TecnikOfficial.github.io" target="_blank">
<img src="https://tecnik.pages.dev/assets/media/GITHUB-white.svg" alt="GitHub" title="Github" width="20" height="20" style="vertical-align: bottom;"></a>
</footer>
<script>// Array of text options
const textOptions = [
"COMPUTER ENTHUSIAST",
"GRAPHICS DESIGNER VFX",
"A.i TECH EXPLORER 010",
"WEB DESIGN + DEVELOPER",
"PRIVACY FOCUSED MODE",
"DIGITAL MUSIC CREATOR",
"CASUAL GAMER GG + OG",
"FREELANCE VIDEO EDITOR"
];
let currentTextIndex = 0; // Initialize index for text options
// Function to change the text
function changeText() {
const textElement = document.getElementById("slider-text");
// Check if we have more text options to display
if (currentTextIndex < textOptions.length) {
textElement.textContent = textOptions[currentTextIndex];
currentTextIndex++; // Move to the next text option
} else {
currentTextIndex = 0; // Reset index if needed
}
}
// Function to start the text display after loading
function startTextDisplay() {
// Start changing text after a delay
setInterval(changeText, 3000); // Change text every 3 seconds
}
// Modify the fadeOutLoadingScreen function to call startTextDisplay
function fadeOutLoadingScreen() {
const loadingScreen = document.getElementById('loading-screen');
loadingScreen.style.opacity = 0; // Start fading out
setTimeout(() => {
loadingScreen.style.display = 'none'; // Hide after fade out
// Start displaying the initial text for 1 seconds after unblur
setTimeout(() => {
startTextDisplay(); // Start displaying text options
}, 400); // Keep initial text for 1 seconds after unblur
}, 1500); // Match this duration with the CSS transition duration
}
// Year timer functionality
let currentYear = 1999;
const yearTimerElement = document.getElementById('year-timer');
const totalYears = 2025 - 1999 + 1; // Include both 1999 and 2025
const durationPerYear = 4000 / totalYears; // Total duration divided by number of years
const increasedDurationFor1999 = 900; // Increased duration for 1999 (1 seconds)
function updateYear() {
yearTimerElement.textContent = currentYear;
// Smooth transition effect
yearTimerElement.style.opacity = 1; // Fade in
setTimeout(() => {
yearTimerElement.style.opacity = 0; // Fade out
}, (currentYear === 1999 ? increasedDurationFor1999 : durationPerYear) - 30); // Fade out just before the year changes
// Increment the year
if (currentYear < 2025) {
// Schedule the next update
setTimeout(() => {
currentYear++; // Move to the next year
updateYear(); // Call the function recursively for the next year
}, currentYear === 1999 ? increasedDurationFor1999 : durationPerYear); // Use increased duration for 1999
} else {
// Ensure the last year is displayed without going blank
yearTimerElement.textContent = 2025;
yearTimerElement.style.opacity = 1; // Ensure it is fully visible
fadeOutLoadingScreen(); // Call fade out function
}
}
// Start the year update animation
updateYear();
// Set the initial text immediately when the page loads
document.addEventListener('DOMContentLoaded', function() {
const textElement = document.getElementById("slider-text");
textElement.textContent = "Welcome Thanks for Visiting"; // Set initial text
// Add click event listener to change text on click
textElement.addEventListener('click', changeText);
});
// Heart emoji functionality
function createHeart() {
const heart = document.createElement('div');
heart.classList.add('heart');
heart.innerText = '❤️'; // Heart emoji
// Set size based on screen width
if (window.innerWidth < 768) { // Mobile view
heart.style.fontSize = '20px'; // Smaller size for mobile
} else {
heart.style.fontSize = '30px'; // Default size for larger screens
}
heart.style.position = 'fixed'; // Change to fixed to prevent layout shift
heart.style.left = Math.random() * 100 + 'vw'; // Random horizontal position
heart.style.top = '0'; // Start from the top
document.body.appendChild(heart);
// Remove heart after animation
heart.addEventListener('animationend', () => {
heart.remove();
});
}
// Function to add heart drop effect to buttons
function addHeartDropEffectToButtons(buttons) {
buttons.forEach(button => {
button.addEventListener('mouseover', () => {
for (let i = 0; i < 10; i++) { // Create 10 heart emojis
createHeart();
}
});
});
}
// Call this function for the donation overlay buttons
const donationButtons = document.querySelectorAll('#donation-overlay .glow-button');
addHeartDropEffectToButtons(donationButtons);
// Call this function for the widget image button
const widgetImage = document.querySelector('.widget-image');
addHeartDropEffectToButtons([widgetImage]);
// Function to handle mouse movement for drawing
let isDrawing = false;
function handleMouseMove(event) {
if (isDrawing) {
const drawingDot = document.createElement('div');
drawingDot.classList.add('drawing');
drawingDot.style.left = `${event.pageX}px`;
drawingDot.style.top = `${event.pageY}px`;
document.body.appendChild(drawingDot);
// Remove the dot after 5 seconds
setTimeout(() => {
drawingDot.style.opacity = 0; // Fade out
setTimeout(() => {
drawingDot.remove(); // Remove from DOM
}, 500); // Match this duration with the CSS transition duration
}, 5000);
}
}
// Function to start drawing
function startDrawing() {
isDrawing = true;
}
// Function to stop drawing
function stopDrawing() {
isDrawing = false;
}
// Add event listener for mouse down to start drawing
document.addEventListener('mousedown', (event) => {
startDrawing(); // Start drawing on click
handleMouseMove(event); // Call handleMouseMove to draw at the click position
});
// Add event listener for mouse move to draw
document.addEventListener('mousemove', handleMouseMove); // Start drawing on mouse move
// Add event listener for mouse up to stop drawing
document.addEventListener('mouseup', stopDrawing); // Stop drawing on mouse up
// Function to open the overlay for services
function openOverlay() {
document.getElementById("table-overlay").style.display = "flex"; // Show overlay
}
// Function to close the overlay for services
function closeOverlay() {
document.getElementById("table-overlay").style.display = "none"; // Hide overlay
}
// Add event listener to services button
document.getElementById("button2").addEventListener("click", openOverlay);
// Add event listener to the overlay to close it when clicking outside the content
document.getElementById("table-overlay").addEventListener("click", function(event) {
// Check if the clicked target is the overlay itself
if (event.target === this) {
closeOverlay(); // Close the overlay
}
});
// Function to open the projects overlay
function openProjectsOverlay() {
document.getElementById("projects-overlay").style.display = "flex"; // Show overlay
}
// Function to close the projects overlay
function closeProjectsOverlay() {
document.getElementById("projects-overlay").style.display = "none"; // Hide overlay
}
// Add event listener to the projects button
document.getElementById("button3").addEventListener("click", openProjectsOverlay);
// Add event listener to the projects overlay to close it when clicking outside the content
document.getElementById("projects-overlay").addEventListener("click", function(event) {
// Check if the clicked target is the overlay itself
if (event.target === this) {
closeProjectsOverlay(); // Close the overlay
}
});
// Function to copy text to clipboard
function copyToClipboard(text) {
navigator.clipboard.writeText(text).then(() => {
alert("Discord username copied to clipboard!"); // Show prompt
}).catch(err => {
console.error('Failed to copy: ', err);
});
}
// Add event listener for the main image click
document.addEventListener('DOMContentLoaded', function() {
const mainImage = document.querySelector('.hover-image');
if (mainImage) {
mainImage.addEventListener('click', function() {
console.log('Main image clicked'); // Log to console for debugging
copyToClipboard('tecnik.gg'); // Copy text to clipboard
});
} else {
console.error('Main image not found');
}
});
function handleDonation(url) {
setTimeout(() => {
window.open(url, '_blank'); // Open the URL in a new tab
}, 1000); // Delay the redirection by 1 second
}
function handleDonation(url) {
// Create a temporary message element
const messageElement = document.createElement('div');
messageElement.style.position = 'fixed';
messageElement.style.top = '40%';
messageElement.style.left = '50%';
messageElement.style.transform = 'translate(-50%, -50%)';
messageElement.style.backgroundColor = 'rgba(0, 0, 0, 0.8)';
messageElement.style.color = 'white';
messageElement.style.padding = '20px';
messageElement.style.borderRadius = '10px';
messageElement.style.zIndex = '200'; // Ensure it's above other elements
messageElement.style.fontSize = '1.5rem'; // Increase font size
messageElement.style.fontWeight = 'bold'; // Make text bold
messageElement.innerText = "🤗Thanks so much for your support! It means a lot❤️";
// Set width for mobile view
if (window.innerWidth < 768) {
messageElement.style.width = '70%'; // Set width to 90% for mobile
} else {
messageElement.style.width = '450px'; // Set a fixed width for larger screens
}
// Append the message to the body
document.body.appendChild(messageElement);
// Redirect after 2 seconds
setTimeout(() => {
window.open(url, '_blank'); // Open the URL in a new tab
document.body.removeChild(messageElement); // Remove the message after redirect
}, 2000); // 2000 milliseconds = 2 seconds
}
// Function to open the donation overlay
function openDonationOverlay() {
document.getElementById("donation-overlay").style.display = "flex"; // Show overlay
}
// Function to close the donation overlay
function closeDonationOverlay() {
document.getElementById("donation-overlay").style.display = "none"; // Hide overlay
}
// Add event listener to the widget image to open the donation overlay
document.querySelector('.widget-image').addEventListener('click', openDonationOverlay);
// Add event listener to the donation overlay to close it when clicking outside the content
document.getElementById("donation-overlay").addEventListener("click", function(event) {
// Check if the clicked target is the overlay itself
if (event.target === this) {
closeDonationOverlay(); // Close the overlay
}
});
// Function to close all overlays
function closeAllOverlays() {
closeOverlay(); // Close services overlay
closeProjectsOverlay(); // Close projects overlay
closeDonationOverlay(); // Close donation overlay
}
// Function to open the donation overlay
function openDonationOverlay() {
closeAllOverlays(); // Close any active overlays
document.getElementById("donation-overlay").style.display = "flex"; // Show donation overlay
}
// Add event listener to the donation widget
document.querySelector('.widget-image').addEventListener('click', openDonationOverlay);
// Function to open or close the notification panel
function toggleNotificationPanel() {
const notificationPanel = document.getElementById("notification-panel");
if (notificationPanel.style.display === "flex") {
notificationPanel.style.display = "none"; // Hide notification panel
} else {
notificationPanel.style.display = "flex"; // Show notification panel
}
}