Quantum Energy Card
<div class="quantum-energy-card">
<!-- Quantum Field Background -->
<div class="quantum-field">
<div class="energy-grid"></div>
<div class="quantum-particles">
<div class="particle" data-particle="1"></div>
<div class="particle" data-particle="2"></div>
<div class="particle" data-particle="3"></div>
<div class="particle" data-particle="4"></div>
<div class="particle" data-particle="5"></div>
<div class="particle" data-particle="6"></div>
<div class="particle" data-particle="7"></div>
<div class="particle" data-particle="8"></div>
<div class="particle" data-particle="9"></div>
<div class="particle" data-particle="10"></div>
<div class="particle" data-particle="11"></div>
<div class="particle" data-particle="12"></div>
</div>
</div>
<!-- Energy Waves -->
<div class="energy-waves">
<div class="wave wave-1"></div>
<div class="wave wave-2"></div>
</div>
<!-- Main Card Content -->
<div class="quantum-card">
<!-- Header -->
<div class="quantum-header">
<div class="quantum-dots">
<div class="dot dot-violet"></div>
<div class="dot dot-cyan"></div>
<div class="dot dot-emerald"></div>
<div class="dot dot-orange"></div>
</div>
<h3 class="quantum-title">Quantum Core</h3>
<p class="quantum-subtitle">Energy Field Analysis</p>
</div>
<!-- Energy Level Display -->
<div class="energy-display">
<div class="energy-header">
<span class="energy-label">Energy Level</span>
<span class="energy-value">67%</span>
</div>
<div class="energy-bar">
<div class="energy-fill"></div>
<div class="energy-pulse"></div>
<div class="energy-indicator"></div>
</div>
</div>
<!-- Quantum States -->
<div class="quantum-states">
<div class="state-header">Quantum States</div>
<div class="state-item active">
<div class="state-info">
<div class="state-dot superposition"></div>
<span class="state-name">Superposition</span>
</div>
<div class="state-progress">
<div class="progress-bar">
<div class="progress-fill superposition-fill" data-value="89"></div>
</div>
<span class="progress-value">89</span>
</div>
</div>
<div class="state-item">
<div class="state-info">
<div class="state-dot entanglement"></div>
<span class="state-name">Entanglement</span>
</div>
<div class="state-progress">
<div class="progress-bar">
<div class="progress-fill entanglement-fill" data-value="76"></div>
</div>
<span class="progress-value">76</span>
</div>
</div>
<div class="state-item">
<div class="state-info">
<div class="state-dot coherence"></div>
<span class="state-name">Coherence</span>
</div>
<div class="state-progress">
<div class="progress-bar">
<div class="progress-fill coherence-fill" data-value="92"></div>
</div>
<span class="progress-value">92</span>
</div>
</div>
<div class="state-item">
<div class="state-info">
<div class="state-dot tunneling"></div>
<span class="state-name">Tunneling</span>
</div>
<div class="state-progress">
<div class="progress-bar">
<div class="progress-fill tunneling-fill" data-value="84"></div>
</div>
<span class="progress-value">84</span>
</div>
</div>
</div>
<!-- Control Panel -->
<button class="quantum-button">
<span class="button-text">Initialize Quantum Field</span>
</button>
</div>
<!-- Floating Quantum Elements -->
<div class="floating-elements">
<div class="floating-element element-1"></div>
<div class="floating-element element-2"></div>
<div class="floating-element element-3"></div>
</div>
</div>About Quantum Energy Card
Quantum Energy Card is a card built with a keyframe animation, gradient fills, transforms, layered shadows and a blurred backdrop. Its stylesheet runs to 463 lines across 80 rules, declaring 45 distinct properties. It styles hover state explicitly, so the component responds to interaction rather than sitting still. The animation is driven by keyframe sequences named quantum-grid, spin, pulse and ping, which you can retime or remove without touching the rest of the styling. Every format shown on this page is the same component, so you can take HTML, CSS and Tailwind depending on how your project is set up. Nothing is minified and nothing depends on a framework.
When to use
- A single prominent card rather than a row of them, since the quantum-grid animation runs continuously and several at once compete with each other
- Palettes built around violet, cyan and emerald, where this card can be dropped in without retheming
- Places where one control is meant to be memorable, since 463 lines of CSS is a real investment for a single element
- Layouts with imagery or colour behind the control, since the backdrop blur needs something to blur
How it works
The base rule sets the shape with border-radius, display, height and margin. The fill is a gradient rather than a flat colour, so it is a single background declaration with no image to load. Movement is done with transforms rather than by changing position or size, which is what keeps it smooth: transforms are composited and do not force the browser to lay the page out again. State changes are eased with a transition, so hovering does not snap. The looping motion comes from quantum-grid, spin, pulse and ping. Changing the animation-duration is usually the only edit needed to make it faster or calmer. The backdrop filter blurs whatever sits behind the element, which means the effect depends on the page underneath rather than on the component alone.
Accessibility
Built on a native <button> element, so keyboard focus and screen reader semantics work without extra attributes. No focus style is defined. Add one before shipping, or keyboard users lose track of position. Animates without a prefers-reduced-motion guard. Wrap the animation in that query if motion sensitivity matters to your audience. Those are 2 things to fix before this ships in front of users.
Browser support
Backdrop filter needs a -webkit- prefix on older Safari.
Related components
Frequently asked questions
Quantum Energy Card
<div class="quantum-energy-card">
<!-- Quantum Field Background -->
<div class="quantum-field">
<div class="energy-grid"></div>
<div class="quantum-particles">
<div class="particle" data-particle="1"></div>
<div class="particle" data-particle="2"></div>
<div class="particle" data-particle="3"></div>
<div class="particle" data-particle="4"></div>
<div class="particle" data-particle="5"></div>
<div class="particle" data-particle="6"></div>
<div class="particle" data-particle="7"></div>
<div class="particle" data-particle="8"></div>
<div class="particle" data-particle="9"></div>
<div class="particle" data-particle="10"></div>
<div class="particle" data-particle="11"></div>
<div class="particle" data-particle="12"></div>
</div>
</div>
<!-- Energy Waves -->
<div class="energy-waves">
<div class="wave wave-1"></div>
<div class="wave wave-2"></div>
</div>
<!-- Main Card Content -->
<div class="quantum-card">
<!-- Header -->
<div class="quantum-header">
<div class="quantum-dots">
<div class="dot dot-violet"></div>
<div class="dot dot-cyan"></div>
<div class="dot dot-emerald"></div>
<div class="dot dot-orange"></div>
</div>
<h3 class="quantum-title">Quantum Core</h3>
<p class="quantum-subtitle">Energy Field Analysis</p>
</div>
<!-- Energy Level Display -->
<div class="energy-display">
<div class="energy-header">
<span class="energy-label">Energy Level</span>
<span class="energy-value">67%</span>
</div>
<div class="energy-bar">
<div class="energy-fill"></div>
<div class="energy-pulse"></div>
<div class="energy-indicator"></div>
</div>
</div>
<!-- Quantum States -->
<div class="quantum-states">
<div class="state-header">Quantum States</div>
<div class="state-item active">
<div class="state-info">
<div class="state-dot superposition"></div>
<span class="state-name">Superposition</span>
</div>
<div class="state-progress">
<div class="progress-bar">
<div class="progress-fill superposition-fill" data-value="89"></div>
</div>
<span class="progress-value">89</span>
</div>
</div>
<div class="state-item">
<div class="state-info">
<div class="state-dot entanglement"></div>
<span class="state-name">Entanglement</span>
</div>
<div class="state-progress">
<div class="progress-bar">
<div class="progress-fill entanglement-fill" data-value="76"></div>
</div>
<span class="progress-value">76</span>
</div>
</div>
<div class="state-item">
<div class="state-info">
<div class="state-dot coherence"></div>
<span class="state-name">Coherence</span>
</div>
<div class="state-progress">
<div class="progress-bar">
<div class="progress-fill coherence-fill" data-value="92"></div>
</div>
<span class="progress-value">92</span>
</div>
</div>
<div class="state-item">
<div class="state-info">
<div class="state-dot tunneling"></div>
<span class="state-name">Tunneling</span>
</div>
<div class="state-progress">
<div class="progress-bar">
<div class="progress-fill tunneling-fill" data-value="84"></div>
</div>
<span class="progress-value">84</span>
</div>
</div>
</div>
<!-- Control Panel -->
<button class="quantum-button">
<span class="button-text">Initialize Quantum Field</span>
</button>
</div>
<!-- Floating Quantum Elements -->
<div class="floating-elements">
<div class="floating-element element-1"></div>
<div class="floating-element element-2"></div>
<div class="floating-element element-3"></div>
</div>
</div>What is inside Quantum Energy Card
Quantum Energy Card is a CSS button built with a keyframe animation, gradient fills, a blurred backdrop, defined in 463 lines across 80 selectors.
Techniques used
Animations defined: quantum-gridspinpulseping
CSS properties in this component
-webkit-background-clip-webkit-text-fill-coloralign-itemsanimationanimation-delayanimation-directionanimation-durationbackdrop-filterbackgroundbackground-clipbackground-colorbackground-imagebackground-sizeborderborder-colorborder-radiusbottombox-shadowcolorcursordisplayflexflex-directionfont-familyfont-sizefont-weightgapheightinsetjustify-contentleftmarginmargin-bottomopacityoverflowpaddingpointer-eventspositionrighttext-aligntoptransformtransitionuser-selectwidthAccessibility check2 to fix
- Built on a native <button> element, so keyboard focus and screen reader semantics work without extra attributes.
- No focus style is defined. Add one before shipping, or keyboard users lose track of position.
- Animates without a prefers-reduced-motion guard. Wrap the animation in that query if motion sensitivity matters to your audience.
Browser support notes
- Backdrop filter needs a -webkit- prefix on older Safari.
These notes are generated by reading this component's own source, so they describe what it actually does rather than what a template says. Copy the code above in HTML, CSS, Tailwind and adapt it freely.