Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Consciousness as an Electromagnetic Field Generator</title> | |
| <style> | |
| body { | |
| margin: 0; | |
| overflow: hidden; | |
| background-color: #000; | |
| color: white; | |
| font-family: 'Arial', sans-serif; | |
| } | |
| canvas { | |
| display: block; | |
| position: absolute; | |
| top: 0; | |
| left: 0; | |
| z-index: 1; | |
| } | |
| .controls { | |
| position: absolute; | |
| bottom: 20px; | |
| left: 20px; | |
| z-index: 2; | |
| display: flex; | |
| gap: 10px; | |
| background: rgba(0, 0, 0, 0.7); | |
| padding: 10px; | |
| border-radius: 10px; | |
| } | |
| button { | |
| background: #2a2a2a; | |
| color: white; | |
| border: 1px solid #555; | |
| padding: 8px 15px; | |
| border-radius: 5px; | |
| cursor: pointer; | |
| transition: background 0.3s; | |
| } | |
| button:hover { | |
| background: #444; | |
| } | |
| .info { | |
| position: absolute; | |
| top: 20px; | |
| left: 20px; | |
| z-index: 2; | |
| max-width: 300px; | |
| background: rgba(0, 0, 0, 0.7); | |
| padding: 15px; | |
| border-radius: 10px; | |
| } | |
| h1 { | |
| font-size: 1.2em; | |
| margin-top: 0; | |
| } | |
| .control-panel { | |
| position: absolute; | |
| right: 20px; | |
| top: 20px; | |
| z-index: 2; | |
| background: rgba(0, 0, 0, 0.7); | |
| padding: 15px; | |
| border-radius: 10px; | |
| width: 250px; | |
| } | |
| .slider-container { | |
| margin-bottom: 15px; | |
| } | |
| .slider-container label { | |
| display: block; | |
| margin-bottom: 5px; | |
| } | |
| .slider-container input { | |
| width: 100%; | |
| } | |
| .brainwave-buttons { | |
| display: flex; | |
| flex-wrap: wrap; | |
| gap: 8px; | |
| margin-bottom: 15px; | |
| } | |
| .brainwave-buttons button { | |
| padding: 5px 10px; | |
| font-size: 0.8em; | |
| } | |
| .harmonics-section button { | |
| margin-right: 8px; | |
| margin-bottom: 8px; | |
| } | |
| .ai-response { | |
| margin-top: 15px; | |
| padding: 10px; | |
| border-radius: 5px; | |
| background: rgba(34, 113, 255, 0.2); | |
| min-height: 60px; | |
| font-style: italic; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <canvas id="canvas"></canvas> | |
| <div class="info"> | |
| <h1>Consciousness as an Electromagnetic Field Generator</h1> | |
| <p>This visualization represents the hypothesis that consciousness generates electromagnetic fields that interact with reality.</p> | |
| <p>The central sphere represents the brain, with waves radiating outward to influence the surrounding particles of reality.</p> | |
| </div> | |
| <div class="control-panel"> | |
| <h2>Brain Field Controls</h2> | |
| <div class="brainwave-buttons"> | |
| <button id="deltaBrain">Delta (0.5-4Hz)</button> | |
| <button id="thetaBrain">Theta (4-8Hz)</button> | |
| <button id="alphaBrain">Alpha (8-14Hz)</button> | |
| <button id="betaBrain">Beta (14-30Hz)</button> | |
| <button id="gammaBrain">Gamma (30-100Hz)</button> | |
| </div> | |
| <div class="slider-container"> | |
| <label for="frequencySlider">Wave Frequency: <span id="frequencyValue">1.0</span></label> | |
| <input type="range" id="frequencySlider" min="0.1" max="5" step="0.1" value="1"> | |
| </div> | |
| <div class="slider-container"> | |
| <label for="amplitudeSlider">Wave Amplitude: <span id="amplitudeValue">1.0</span></label> | |
| <input type="range" id="amplitudeSlider" min="0.1" max="2" step="0.1" value="1"> | |
| </div> | |
| <div class="slider-container"> | |
| <label for="coherenceSlider">Field Coherence: <span id="coherenceValue">1.0</span></label> | |
| <input type="range" id="coherenceSlider" min="0.1" max="2" step="0.1" value="1"> | |
| </div> | |
| <h3>Harmonic Resonance</h3> | |
| <div class="harmonics-section"> | |
| <button id="fibonacciButton">Fibonacci</button> | |
| <button id="goldenRatioButton">Golden Ratio</button> | |
| <button id="primeButton">Prime Numbers</button> | |
| </div> | |
| <h3>AI Response</h3> | |
| <div class="ai-response" id="aiResponse"> | |
| Observing consciousness field... | |
| </div> | |
| </div> | |
| <div class="controls"> | |
| <button id="togglePlay">Pause</button> | |
| <button id="toggleParticles">Toggle Reality Particles</button> | |
| <button id="toggleConnections">Toggle Field Connections</button> | |
| </div> | |
| <script src="script.js"></script> | |
| </body> | |
| </html> |