Created
April 25, 2015 09:51
-
-
Save internoma/e256ab808a6cccf1cadb to your computer and use it in GitHub Desktop.
r4bkganimation
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
background: linear-gradient(214deg, #882135, #ffffff); | |
background-size: 400% 400%; | |
-webkit-animation: r4bkganimation 30s ease infinite; | |
-moz-animation: r4bkganimation 30s ease infinite; | |
-o-animation: r4bkganimation 30s ease infinite; | |
animation: r4bkganimation 30s ease infinite; | |
@-webkit-keyframes r4bkganimation { | |
0%{background-position:81% 0%} | |
50%{background-position:20% 100%} | |
100%{background-position:81% 0%} | |
} | |
@-moz-keyframes r4bkganimation { | |
0%{background-position:81% 0%} | |
50%{background-position:20% 100%} | |
100%{background-position:81% 0%} | |
} | |
@-o-keyframes r4bkganimation { | |
0%{background-position:81% 0%} | |
50%{background-position:20% 100%} | |
100%{background-position:81% 0%} | |
} | |
@keyframes r4bkganimation { | |
0%{background-position:81% 0%} | |
50%{background-position:20% 100%} | |
100%{background-position:81% 0%} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment