-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsmooth.html
150 lines (141 loc) · 5 KB
/
smooth.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
<!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;
margin: 0;
}
body {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
background-color: #fff;
}
#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: 400px;
height: 400px;
border-radius: 50%;
border: 1px solid #000;
margin-top: 2rem;
animation: spin3D 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;
animation: pulsate 3s infinite alternate;
}
.quantumBit {
position: absolute;
width: 60px;
height: 60px;
transform-origin: 200px 200px;
text-align: center;
line-height: 60px;
font-size: 30px;
color: #ff0000;
cursor: pointer;
}
@keyframes spin3D {
0% { transform: rotateX(0deg) rotateY(0deg); }
100% { transform: rotateX(360deg) rotateY(360deg); }
}
@keyframes pulsate {
0% { transform: scale(1); }
100% { transform: scale(1.1); }
}
</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 };
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 randomPosition(element) {
element.style.left = `${Math.random() * 100}%`;
element.style.top = `${Math.random() * 100}%`;
}
function rollQuantumDie() {
return ['H', '𝕏', '+'][Math.floor(Math.random() * 3)];
}
function virtualSchrodingersCat() {
return Math.random() < 0.5 ? '0' : '1';
}
function virtualHamzatsCat() {
return ['O', '1', '2'][Math.floor(Math.random() * 3)];
}
function getResponse() {
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();
const angle = (i / (4000/3)) * 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)`;
div.onmouseover = function() {
randomPosition(div);
};
if (hamzatsCat === '1') {
innerSphere.style.backgroundColor = '#000';
}
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>