Last active
September 30, 2016 09:49
-
-
Save alex-boom/8f1a64b95b37d6e56bf66e15d4fdf6e0 to your computer and use it in GitHub Desktop.
animate-css
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*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