3200creative
2/15/2014 - 3:33 PM

Flashing Button CSS Class

Flashing Button CSS Class

@-webkit-keyframes change_background_color {
  to {
    color: #2cabe2;
  }
}

@-moz-keyframes change_background_color {
  to {
    color: #2cabe2;
  }
}

@-ms-keyframes change_background_color {
  to {
    color: #2cabe2;
  }
}

@keyframes change_background_color {
  to {
    color: #2cabe2;
  }
}

.learn-more {
  -webkit-animation-name: change_background_color;
  -moz-animation-name: change_background_color;
  -ms-animation-name: change_background_color;
  animation-name: change_background_color;
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-iteration-count: 16;
  -moz-animation-iteration-count: 16;
  -ms-animation-iteration-count: 16;
  animation-iteration-count: 16;
  -webkit-animation-direction: alternate;
  -moz-animation-direction: alternate;
  -ms-animation-direction: alternate;
  animation-direction: alternate;
  -webkit-animation-timing-function: ease-in-out;
  -moz-animation-timing-function: ease-in-out;
  -ms-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}