BTN001

Glowing Button Effect

A neon-glowing button with hover animation effect

CSS Effects

Live Preview

Code

HTML
<button class="glowing-button">Hover Me</button>
CSS
.glowing-button {
  padding: 12px 24px;
  background: transparent;
  color: #00eeff;
  border: 2px solid #00eeff;
  border-radius: 5px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 0 5px #00eeff, 0 0 10px #00eeff;
  transition: all 0.3s ease;
}

.glowing-button:hover {
  background: #00eeff;
  color: #000;
  box-shadow: 0 0 10px #00eeff, 0 0 20px #00eeff, 0 0 40px #00eeff;
}