Skip to content

Instantly share code, notes, and snippets.

@alex-boom
Last active September 30, 2016 09:49
Show Gist options
  • Save alex-boom/8f1a64b95b37d6e56bf66e15d4fdf6e0 to your computer and use it in GitHub Desktop.
Save alex-boom/8f1a64b95b37d6e56bf66e15d4fdf6e0 to your computer and use it in GitHub Desktop.
animate-css
/*1-й способ*/
.button-top{
animation: mymove-top 5s infinite;
@keyframes mymove-top {
from {box-shadow: 0px 0px 0px 0px #e9050e;}
to {
box-shadow: 0px 0px 47px 11px #e9050e;
transform: scale(1.1,1.1);
opacity: .4;
}
}
}
/*2-й способ*/
.button-top{
animation: mymove-top 5s infinite;
@keyframes mymove-top {
0% {
box-shadow: 0px 0px 47px 11px #e9050e;
transform: scale(1.1,1.1);
opacity: .4;
}
50% {
box-shadow: 0px 0px 0px 0px #e9050e;
opacity: 1;
}
100% {
box-shadow: 0px 0px 47px 11px #e9050e;
transform: scale(1.1,1.1);
opacity: .4;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment