-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsend.html
267 lines (261 loc) Β· 9.66 KB
/
send.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Virtual Quantum Chatbot</title>
<style>
body, input, h1 {
font-family: 'Times New Roman', serif;
}
body {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
background-color: #fff;
margin: 0;
}
#container {
text-align: center;
margin-bottom: 2rem;
}
#user_input {
width: 80%;
padding: 0.5rem;
font-size: 1rem;
border: 1px solid #ccc;
border-radius: 4px;
}
#quantumFieldContainer {
position: relative;
width: 200px;
height: 200px;
border-radius: 50%;
border: 1px solid #000;
margin-top: 2rem;
animation: spin 10s linear infinite;
transform-style: preserve-3d;
}
.innerSphere {
position: absolute;
width: 50px;
height: 50px;
border-radius: 50%;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background-color: #000;
}
.quantumBit {
position: absolute;
width: 30px;
height: 30px;
transform-origin: 100px 100px;
text-align: center;
line-height: 30px;
font-size: 20px;
color: #000;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
</style>
</head>
<body>
<div id="container">
<h1>Virtual Quantum Chatbot</h1>
<input type="text" id="user_input" placeholder="Type your query and hit Enter..." onkeypress="handleKeyPress(event)">
</div>
<div id="quantumFieldContainer">
<div class="innerSphere" id="innerSphere"></div>
</div>
<script>
const audioContext = new AudioContext();
const charToNote = { 'O': 261.63, '1': 293.66, '2': 329.63, 'H': 349.23, 'π': 392.00, '+': 440.00, '0': 493.88 };
const rollQuantumDie = () => ['H', 'π', '+'][Math.floor(Math.random() * 3)];
const virtualSchrodingersCat = () => Math.random() < 0.5 ? '0' : '1';
const virtualHamzatsCat = () => ['O', '1', '2'][Math.floor(Math.random() * 3)];
function playNote(frequency, delay) {
const oscillator = audioContext.createOscillator();
oscillator.type = 'sine';
oscillator.frequency.setValueAtTime(frequency, audioContext.currentTime + delay);
oscillator.connect(audioContext.destination);
oscillator.start(audioContext.currentTime + delay);
oscillator.stop(audioContext.currentTime + delay + 0.5);
}
function getResponse() {
let quantumDieField = '';
let schrodingersCatField = '';
let hamzatsCatField = '';
let i = 0;
const container = document.getElementById('quantumFieldContainer');
const innerSphere = document.getElementById('innerSphere');
const interval = setInterval(() => {
if (i >= 4000) {
clearInterval(interval);
} else {
const quantumBit = rollQuantumDie();
const schrodingersCat = virtualSchrodingersCat();
const hamzatsCat = virtualHamzatsCat();
quantumDieField += quantumBit;
schrodingersCatField += schrodingersCat;
hamzatsCatField += hamzatsCat;
const angle = (i / 4000) * 360;
const div = document.createElement('div');
div.className = 'quantumBit';
div.innerText = (i % 2 === 0) ? quantumBit : (i % 3 === 0) ? schrodingersCat : hamzatsCat;
const zPosition = Math.sin((i / 4000) * 2 * Math.PI) * 50;
div.style.transform = `rotate(${angle}deg) translateZ(${zPosition}px)`;
container.appendChild(div);
if (hamzatsCat === '1') {
innerSphere.style.backgroundColor = '#000';
} else {
innerSphere.style.backgroundColor = '';
}
const char = (i % 2 === 0) ? quantumBit : (i % 3 === 0) ? schrodingersCat : hamzatsCat;
playNote(charToNote[char], i * 0.0125);
}
i++;
}, 50);
}
function handleKeyPress(event) {
if (event.key === 'Enter') {
getResponse();
event.preventDefault();
}
}
</script>
</body>
</html><!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Virtual Quantum Chatbot</title>
<style>
body, input, h1 {
font-family: 'Times New Roman', serif;
}
body {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
background-color: #fff;
margin: 0;
}
#container {
text-align: center;
margin-bottom: 2rem;
}
#user_input {
width: 80%;
padding: 0.5rem;
font-size: 1rem;
border: 1px solid #ccc;
border-radius: 4px;
}
#quantumFieldContainer {
position: relative;
width: 200px;
height: 200px;
border-radius: 50%;
border: 1px solid #000;
margin-top: 2rem;
animation: spin 10s linear infinite;
}
.innerSphere {
position: absolute;
width: 50px;
height: 50px;
border-radius: 50%;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background-color: #000;
}
.quantumBit {
position: absolute;
width: 30px;
height: 30px;
transform-origin: 100px 100px;
text-align: center;
line-height: 30px;
font-size: 20px;
color: #000;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
</style>
</head>
<body>
<div id="container">
<h1>Virtual Quantum Chatbot</h1>
<input type="text" id="user_input" placeholder="Type your query and hit Enter..." onkeypress="handleKeyPress(event)">
</div>
<div id="quantumFieldContainer">
<div class="innerSphere" id="innerSphere"></div>
</div>
<script>
const audioContext = new AudioContext();
const charToNote = { 'O': 261.63, '1': 293.66, '2': 329.63, 'H': 349.23, 'π': 392.00, '+': 440.00, '0': 493.88 };
const rollQuantumDie = () => ['H', 'π', '+'][Math.floor(Math.random() * 3)];
const virtualSchrodingersCat = () => Math.random() < 0.5 ? '0' : '1';
const virtualHamzatsCat = () => ['O', '1', '2'][Math.floor(Math.random() * 3)];
function playNote(frequency, delay) {
const oscillator = audioContext.createOscillator();
oscillator.type = 'sine';
oscillator.frequency.setValueAtTime(frequency, audioContext.currentTime + delay);
oscillator.connect(audioContext.destination);
oscillator.start(audioContext.currentTime + delay);
oscillator.stop(audioContext.currentTime + delay + 0.5);
}
function getResponse() {
let quantumDieField = '';
let schrodingersCatField = '';
let hamzatsCatField = '';
let i = 0;
const container = document.getElementById('quantumFieldContainer');
const innerSphere = document.getElementById('innerSphere');
const interval = setInterval(() => {
if (i >= 4000) {
clearInterval(interval);
} else {
const quantumBit = rollQuantumDie();
const schrodingersCat = virtualSchrodingersCat();
const hamzatsCat = virtualHamzatsCat();
quantumDieField += quantumBit;
schrodingersCatField += schrodingersCat;
hamzatsCatField += hamzatsCat;
const angle = (i / 4000) * 360;
const div = document.createElement('div');
div.className = 'quantumBit';
div.innerText = (i % 2 === 0) ? quantumBit : (i % 3 === 0) ? schrodingersCat : hamzatsCat;
div.style.transform = `rotate(${angle}deg)`;
container.appendChild(div);
if (hamzatsCat === '1') {
innerSphere.style.backgroundColor = '#000';
} else {
innerSphere.style.backgroundColor = '';
}
const char = (i % 2 === 0) ? quantumBit : (i % 3 === 0) ? schrodingersCat : hamzatsCat;
playNote(charToNote[char], i * 0.0125);
}
i++;
}, 50);
}
function handleKeyPress(event) {
if (event.key === 'Enter') {
getResponse();
event.preventDefault();
}
}
</script>
</body>
</html>