-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
141 lines (126 loc) · 2.77 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
<!doctype html>
<html>
<head>
<meta charset='UTF-8'>
<meta name='theme-color' content='#fff' class='theme-color'/>
<style>
body {
background: #111;
color: #411;
font-family: Consolas, Courier, monospace;
font-size: 60px;
text-shadow: 0 0 15px #411;
height: 100%;
}
div {
position: relative;
top: 50%;
margin: -30px auto;
text-align: center;
}
.glow {
color: #f00;
text-shadow: 0px 0px 10px #f00;
}
span {
display: inline-block;
padding: 0 10px;
}
.hello-message {
margin: 40px;
text-align: center;
}
.logout-messages {
pointer-events: none;
color: red;
margin: 40px;
position: fixed;
top: 0;
left: 0;
text-shadow: 2px 2px #FFF, 4px 4px 10px #000;
}
img {
width: 300px;
}
@keyframes blurslowly {
0% {
filter: none;
}
92% {
filter: blur(0);
}
96% {
filter: blur(1px);
}
100% {
filter: blur(0);
}
}
body {
animation-name: blurslowly;
animation-iteration-count: infinite;
animation-duration: 15s;
animation-play-state: running;
}
</style>
</head>
<body>
<template>
<div class='hello-message'>
<div id="loading"> Prapatti_MynK</div>
<h1>Contact On WhatsApp</h1>
<p>Click Here</p>
</div>
<div class='logout-messages'></div>
</template>
<script src='/index.js'></script>
<script async src='https://www.googletagmanager.com/gtag/js?id=UA-3898076-24'></script>
<script>
window.dataLayer = window.dataLayer || []
function gtag () {
window.dataLayer.push(arguments)
}
gtag('js', new Date())
gtag('config', 'UA-3898076-24')
</script>
<script>
alphabet = new Array("A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "1", "2", "3", "4", "5", "6", "7", "8", "9", "0");
letter_count = 0;
el = $("#Prapatti_Mynk");
word = el.html().trim();
finished = false;
el.html("");
for (var i = 0; i < word.length; i++) {
el.append("<span>"+word.charAt(i)+"</span>");
}
setTimeout(write, 75);
incrementer = setTimeout(inc, 1000);
function write() {
for (var i = letter_count; i < word.length; i++) {
var c = Math.floor(Math.random() * 36);
$("span")[i].innerHTML = alphabet[c];
}
if (!finished) {
setTimeout(write, 75);
}
}
function inc() {
$("span")[letter_count].innerHTML = word[letter_count];
$("span:eq("+letter_count+")").addClass("glow");
letter_count++;
if (letter_count >= word.length) {
finished = true;
setTimeout(reset, 1500);
} else {
setTimeout(inc, 1000);
}
}
function reset() {
letter_count = 0;
finished = false;
setTimeout(inc, 1000);
setTimeout(write, 75);
$("span").removeClass("glow");
}</script>
</body>
</html>