Neon Hover Effect Cards
Vibrant Neon Glow Effects
Add electrifying energy to your designs with these neon-inspired hover effects. These cards feature glowing borders, text, and shadows that evoke the vibrant aesthetic of neon signs.
Basic Neon
Simple neon glow effect on hover.
Pulsing Neon
Glow effect that pulses with animation.
Neon Border
Card with illuminated border edges.
Text Glow
Card with glowing text elements.
Shadow Glow
Card with dramatic glowing shadow effects.
Colorful Neon
Multi-colored neon effects for vibrant impact.
How to Create Neon Effects
.hover-card-neon {
height: 280px;
background: rgba(26, 32, 53, 0.7);
border-radius: 15px;
overflow: hidden;
position: relative;
transition: all 0.4s ease;
border: 1px solid rgba(255, 255, 255, 0.1);
}
.hover-card-neon:hover {
box-shadow: 0 0 20px var(--primary-color),
0 0 40px rgba(138, 43, 226, 0.4);
border-color: var(--primary-color);
}
.hover-card-neon:hover .card-content h3 {
color: var(--primary-color);
text-shadow: 0 0 10px rgba(138, 43, 226, 0.7);
}
/* For pulsing effect */
@keyframes pulse {
0% {
box-shadow: 0 0 0 0 rgba(138, 43, 226, 0.4);
}
70% {
box-shadow: 0 0 0 15px rgba(138, 43, 226, 0);
}
100% {
box-shadow: 0 0 0 0 rgba(138, 43, 226, 0);
}
}
.pulse {
animation: pulse 2s infinite;
}