∂t2Ψ(r,t)=∇⋅(c2A(r,t)∇Ψ)−κ∂tΨ−μDt1−α∂tΨ−δΨδV(Ψ;θ(r,t))−∫K(r−r′;ξ)(Ψ(r,t)−Ψ(r′,t))dr′+Sstruct(t)+ξ(r,t)
be6944d verified | class CustomWaveVisualizer extends HTMLElement { | |
| connectedCallback() { | |
| this.attachShadow({ mode: 'open' }); | |
| this.shadowRoot.innerHTML = ` | |
| <style> | |
| .wave-container { | |
| background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%); | |
| border-radius: 1rem; | |
| overflow: hidden; | |
| position: relative; | |
| height: 500px; | |
| } | |
| .wave-grid { | |
| position: absolute; | |
| top: 0; | |
| left: 0; | |
| width: 100%; | |
| height: 100%; | |
| background-image: | |
| linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px), | |
| linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px); | |
| background-size: 20px 20px; | |
| } | |
| .wave-node { | |
| position: absolute; | |
| width: 8px; | |
| height: 8px; | |
| border-radius: 50%; | |
| background: #7c3aed; | |
| transform: translate(-50%, -50%); | |
| box-shadow: 0 0 |