Glow Animation Effect in CSS3/HTML5

Edoras picture Edoras · Jan 20, 2014 · Viewed 14.3k times · Source

Is there any possibility to create a similar animation glow effect on the buttons and other objects on the web without using Flash or GIF?

Glow Animation GIF

Answer

Richik SC picture Richik SC · Jul 15, 2014

Use @keyframes.

You can make a pulsing animation like this.

#box {
  width:80px;
  height:80px;
  background:gray;
  animation:pulse 0.5s infinite alternate;
}

@keyframes pulse {
  from { box-shadow:0px 0px 10px 3px #0066cc; }
  to { box-shadow:0px 0px 20px 5px #0066cc; }
}

Note @keyframes should be prefixed like this: @-webkit-keyframes. also the animation property should be prefixed