Return to Snippet

Revision: 70268
at December 30, 2015 23:26 by envane21


Initial Code
@-webkit-keyframes glowPulse {
  from { background-color: #749a02; -webkit-box-shadow: 0 0 10px #b6b6b6; }
  50% { background-color: #91bd09; -webkit-box-shadow: 0 0 20px #fff; }
  to { background-color: #749a02; -webkit-box-shadow: 0 0 10px #b6b6b6; }
}

.pulse {
  -webkit-animation-name: glowPulse;
  -webkit-animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
}

Initial URL


Initial Description
endless loop glow button effect

Initial Title
glow button effect

Initial Tags
button

Initial Language
CSS